.pricing-section {
  padding: 60px 0;
  background: #fff;
}

.pricing-section h1 {
  margin: 110px 0 30px;
  text-align: center;
  font-size: clamp(26px, 4vw, 37px);
  font-weight: 600;
  color: var(--text-dark);
}

.section-subtitle {
  display: inline-block;
  font-size: clamp(17px, 4vw, 20px);
  margin-bottom: 40px;
  background: #E8F5F5;
  color: #666;
  padding: 6px 16px;
  border-radius: 6px;
  max-width: 550px;
  text-align: center;
  font-weight: 500;
}

.section-subtitle-wrapper {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
}

.pricing-block {
  margin-bottom: 80px;
  margin-left: 120px;
  margin-right: 120px;
}

.pricing-block h2 {
    text-align: center;
    background: linear-gradient(90deg, #0B7578, #B35A12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #0B7578, #B35A12);
    border-image-slice: 1;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: clamp(20px, 4vw, 29px);
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table th {
  background: #0b9498;
  color: white;
  padding: 16px 13px;
  text-align: left;
  font-weight: 600;
  font-size: 1.2em;
}

.price-table td {
  padding: 15px;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: top;
  font-size: 1.2em;
}

.price-table tbody tr:hover {
  background: #f8f9fa;
}

.price-table tfoot {
  background: #f8f9fa;
}

.total-row td {
  border-top: 2px solid #333;
  font-size: 1.2em;
  font-weight: 500;
  text-align: right;
}

.price {
  font-weight: 600;
  color: #0B7578;
  white-space: nowrap;
}

.special-price {
  color: #28a745;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
  margin-left: 10px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 10px;
}

.service-features li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 0.9em;
  color: #666;
}

.service-features li:before {
  content: "•";
  color: #0B7578;
  position: absolute;
  left: 0;
}

.price-note {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
  border-left: 6px solid #0B7578;
  margin-top: 30px;
}

.price-note p {
  margin: 5px 0;
  font-size: 1.1em;
  color: #666;
}

.price-text {
  padding: 15px;
  border-radius: 12px;
  margin-top: 30px;
}

.price-text p {
  margin: 5px 0;
  font-size: 1.3em;
}

.auxiliary {
  background: #f8f9fa;
  padding: 15px;
  margin-top: 20px;
  border-radius: 12px;
}

.auxiliary p {
  margin: 5px 0;
  font-size: 1.1em;
  color: #666;
}

.promotions-block {
  margin-bottom: 60px;
}

.promotions-block h2 {
  color: #333;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: clamp(26px, 4vw, 34px);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.promotion-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #e6e6e6;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-header h3 {
  color: #0B7578;
  margin: 0 0 15px 0;
  font-size: 1.3em;
}

.promotion-result {
  margin-bottom: 20px;
}

.promotion-result p {
  font-size: 1.1em;
  color: #333;
  margin: 0;
}

.pricing-cta {
  text-align: center;
  background: linear-gradient(125deg, #0B7578 0%, #85BABC 200%);
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 80px;
  margin-top: 80px;
}

.pricing-cta h2 {
  color: white;
  margin-bottom: 15px;
}

.pricing-cta p {
  font-size: 1.1em;
  margin-bottom: 25px;
  opacity: 0.9;
}

@media (max-width: 1210px) {
  .pricing-block {
   margin-left: 80px;
   margin-right: 80px;
  }
  
  .pricing-section h1 {
   margin: 60px 0 30px;
  }
  
 }

@media (max-width: 940px) {
  .pricing-block {
   margin-left: 60px;
   margin-right: 60px;
  }
 }
  
@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 0;
  }
  
  .pricing-cta {
	margin-bottom: 40px;
	margin-top: 40px;
  }
  
  .pricing-block {
   margin-left: 40px;
   margin-right: 40px;
  }
  
  .pricing-section h1 {
    margin-top: 70px;
	margin-bottom: 20px;
  }
  
  .section-subtitle {
	margin-bottom: 20px;
  }
  
  .price-table th,
  .price-table td {
    padding: 12px 12px;
    font-size: 1.1em;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .pricing-cta {
    padding: 40px 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .promotion-header h3 {
  font-size: 1.1em;
  }
  
  .promotion-result p {
  font-size: 1em;
  }
  
}

@media (max-width: 480px) {
  .price-table {
    font-size: 0.8em;
  }
  
  .pricing-block {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .service-features li {
    font-size: 0.85em;
  }
  
  .price-note {
    margin-top: 10px;
  }
  
  .price-note p {
    font-size: 0.9em;
  }
  
  .auxiliary {
    margin-top: 10px;
  }
  
  .auxiliary p {
    font-size: 0.9em;
  }
}