.hero-business {
    background-image: url('/Static/images/business_solutions_hero.webp');
    /* background: var(--gradient-main); */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
}

.btn {
  display: inline-block;
  background: var(--green-primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--green-primary);
}

.btn-outline {
  background: var(--green-primary);
  color: var(--white);
  border: none;
}

.btn-outline:hover {
  background: var(--green-hover);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.service-overview {
  padding: var(--spacing-md) var(--spacing-sm);
  text-align: center;
  background-color: var(--background);
}

.service-overview h2 {
  font-size: 2em;
  color: var(--green-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.overview-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: var(--text-secondary);
  line-height: 1.7;
}

.overview-container{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.overview-item{
  flex: 0 0 350px;
  max-width: 350px;
  background-color: var(--white);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.overview-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.overview-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 15px;
}

.overview-content h3 {
  font-size: 1.5em;
  color: var(--green-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.overview-content p {
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.overview-content{
  display: flex;
  flex-direction: column;
  flex: 1;
}

.overview-content .btn{
  margin-top: auto;
}


.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-sm);
  text-align: left;
}

.feature-list li {
  padding: 5px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
  font-size: 0.95em;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 700;
}

.calculator-section {
  padding: var(--spacing-md) var(--spacing-sm);
  background: var(--gradient-main);
  color: var(--white);
  text-align: center;
}

.calculator-section h2 {
  font-size: 2em;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.calculator-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.95;
}

.calculator-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.calculator-inputs {
  flex: 1;
  min-width: 300px;
}

.input-group {
  margin-bottom: 25px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 1em;
  margin-bottom: 8px;
  font-weight: 600;
}

.input-group input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  accent-color: var(--yellow);
}

.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.input-group input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: none;
}

.input-value {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  margin-top: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.calculator-result {
  flex: 1;
  min-width: 300px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 30px var(--spacing-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-result h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 700;
}

.payment-amount {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--yellow);
}

.payment-note {
  font-size: 0.85em;
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
}

.features {
  padding: var(--spacing-md) var(--spacing-sm);
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  font-size: 2em;
  color: var(--green-primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px var(--spacing-sm);
  background: var(--surface-secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2em;
  color: var(--green-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95em;
}

.industry-solutions {
  padding: var(--spacing-md) var(--spacing-sm);
  background-color: var(--background);
  text-align: center;
}

.industry-solutions h2 {
  font-size: 2em;
  color: var(--green-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: var(--text-secondary);
  line-height: 1.7;
}

.industry-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.industry-card {
  flex: 1;
  min-width: 250px;
  background: var(--white);
  padding: 25px var(--spacing-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.industry-icon {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 1.2em;
  color: var(--green-primary);
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
}

.industry-card p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
  font-size: 0.95em;
}

.industry-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.industry-features li {
  padding: 5px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
  font-size: 0.9em;
}

.industry-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 700;
}

.related-services {
  padding: var(--spacing-md) var(--spacing-sm);
  background-color: var(--white);
  text-align: center;
}

.related-services h2 {
  font-size: 2em;
  color: var(--green-primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  max-width: 350px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: var(--spacing-sm);
  text-align: center;
}

.service-content h3 {
  font-size: 1.3em;
  color: var(--green-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.95em;
}

.faq-section {
  padding: var(--spacing-md) var(--spacing-sm);
  background-color: var(--background);
}

.faq-section h2 {
  text-align: center;
  font-size: 2em;
  color: var(--green-primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  padding: 15px var(--spacing-sm);
  background: var(--surface-secondary);
  border: none;
  text-align: left;
  font-size: 1em;
  font-weight: 600;
  color: var(--green-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e8f0e9;
}

.faq-toggle {
  font-size: 1.2em;
  color: var(--green-primary);
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 15px var(--spacing-sm);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95em;
}

.faq-item.active .faq-question {
  background: var(--gradient-main);
  color: var(--white);
}

.faq-item.active .faq-toggle {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

.cta {
  background: var(--gradient-main);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
  margin-top: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.cta h2 {
  font-size: 2em;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.cta p {
  font-size: 1.1em;
  margin-bottom: 25px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2em;
  }
  
  .calculator-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .overview-container {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    flex-direction: column;
  }
  
  .industry-grid {
    flex-direction: column;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-business {
    padding: var(--spacing-md) 15px;
  }
  
  .service-overview,
  .calculator-section,
  .features,
  .industry-solutions,
  .related-services,
  .faq-section,
  .cta {
    padding: 30px 15px;
  }
  
  .calculator-result {
    padding: var(--spacing-sm) 15px;
  }
  
  .payment-amount {
    font-size: 2em;
  }
  
  .industry-card {
    padding: var(--spacing-sm) 15px;
  }
}