/* General Body Styles */
body {
  background-color: #121212;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* Header Styles */
.crew-header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../../images/graphic.jpg") no-repeat center center/cover;
}

.crew-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.crew-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

/* Services Section */
#graphic-container {
  padding: 30px 20px;
}

.category {
  margin-bottom: 30px;
}

.category h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid #333;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

.service-card i {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 15px 0;
}

.service-card .price span {
  font-size: 0.9rem;
  color: #cccccc;
}

.service-card p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-card .btn {
  display: inline-block;
  padding: 10px 30px;
  background: #00aaff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-card .btn:hover {
  background-color: #c0392b;
  transform: scale(1.05);
}
