.packshot-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #e6e6e6, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.pricing-note, .additional-info {
  text-align: center;
  margin-bottom: 30px;
  color: #c0c0c0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  font-size: 1.5rem;
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto;
}

/* Main content styles */
.service-description {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.service-description p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #d0d0d0;
}

.highlight {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 2px solid rgba(58, 123, 213, 0.4);
  padding-bottom: 2px;
}

/* Pricing section */
.pricing-section {
  padding: 50px 0;
  background: linear-gradient(145deg, #1e1e26, #1e2535);
  border-radius: 16px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3a7bd5, #1565C0);
}

.pricing-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(58, 123, 213, 0.5), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  padding: 0 20px;
  margin-top: 50px;
}

.pricing-card {
  background: linear-gradient(145deg, #25252f, #1e2535);
  border-radius: 12px;
  padding: 35px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(58, 123, 213, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(58, 123, 213, 0.3);
  margin-top: 10px;
}

/* Additional info section */
.additional-info {
  padding: 20px 0;
  max-width: 800px;
  margin: 0 auto;
}

.additional-info h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.additional-info p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #d0d0d0;
}

.installation-fee {
  background: linear-gradient(145deg, #25252f, #1e2535);
  padding: 35px;
  border-radius: 12px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.installation-fee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #3a7bd5, #1565C0);
}

.installation-fee h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #ffffff;
}

.installation-fee .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 20px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(58, 123, 213, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}