/* Solanta Nutrition Landing Page Styles */
:root {
  /* New neomorphic color palette */
  --primary: #008CBA;
  --primary-dark: #007ba1;
  --secondary: #FF6B6B;
  --cta: #00C8AA;
  --cta-hover: #00b096;
  --bg-main: #E6F7FA;
  --bg-card: #F0FAFD;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --text: #333333;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow-soft: 8px 8px 16px rgba(174, 208, 219, 0.4), -8px -8px 16px rgba(255, 255, 255, 0.8);
  --shadow-pressed: inset 4px 4px 8px rgba(174, 208, 219, 0.4), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Manrope', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-main);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 10px;
  box-shadow: var(--shadow-soft);
}

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

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-3px);
}

.btn-primary:active {
  box-shadow: var(--shadow-pressed);
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: rgba(0, 200, 170, 0.1);
  transform: translateY(-3px);
}

.btn-secondary:active {
  box-shadow: var(--shadow-pressed);
  transform: translateY(0);
}

section {
  padding: 80px 0;
  position: relative;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: #f9fbfd;
}

/* Steps Carousel Styles */
.steps-carousel-container {
  position: relative;
  margin: 60px 0;
  padding: 20px 0;
}

.swiper-container.steps-swiper {
  overflow: visible;
  padding: 20px 0 60px;
}

.swiper-slide {
  height: auto;
  transition: transform 0.3s ease;
}

.step-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 32px 48px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 24px rgba(174, 208, 219, 0.5), -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.step-label {
  display: inline-block;
  background-color: var(--cta);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  position: absolute;
  top: -12px;
  left: 32px;
}

.step-card h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
}

.step-card h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.step-card p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--text);
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: var(--text);
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: var(--primary);
  font-size: 1rem;
  width: 1.5rem;
  text-align: center;
}

.cta-container {
  margin-top: 2rem;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
  background-color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--cta);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: bold;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--white);
}

.swiper-pagination {
  bottom: 20px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--bg-main);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--cta);
  opacity: 1;
}

/* Responsive adjustments */
@media (min-width: 1024px) {
  .swiper-container.steps-swiper {
    overflow: hidden;
  }
  
  .swiper-slide {
    width: 48%;
    margin-right: 4%;
  }
}

@media (max-width: 1023px) {
  .step-card {
    padding: 32px;
  }
  
  .step-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .step-card {
    padding: 24px;
  }
  
  .step-card h3 {
    font-size: 1.4rem;
  }
  
  .feature-list li {
    font-size: 1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

/* Hero Section */
.solanta-hero {
  background: var(--bg-main);
  color: var(--text);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.solanta-hero .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  border-radius: 20px;
  gap: 20px;
}

.hero-content {
  flex: 1;
  max-width: 45%;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text);
  font-weight: 400;
}

.hero-image-container {
  position: absolute;
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  flex: 1;
}

.hero-image-container.neomorphic {

  border-radius: 10px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-highlight {
  background: #E0F8F6;
  color: #008CBA;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.hero-image-container.neomorphic:hover {
  transform: translateY(-10px);
}

.hero-image {
  width: auto;
  height: 450px;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  object-fit: contain;
}

.cta-buttons {
  display: flex;
  margin-top: 30px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .solanta-hero h1 {
    font-size: 2.8rem;
  }
  
  .solanta-hero .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .solanta-hero {
    padding: 100px 0 160px;
    text-align: center;
  }
  
  .solanta-hero .container {
    flex-direction: column;
  }
  
  .solanta-hero .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    max-width: 100%;
  }
  
  .solanta-hero .logo {
    margin: 0 auto 1.5rem;
  }
  
  .solanta-hero h1 {
    font-size: 2.2rem;
  }
  
  .solanta-hero .hero-subtitle {
    margin: 0 auto 2rem;
    max-width: 100%;
  }
  
  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  
  .solanta-hero .hero-image {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .solanta-hero h1 {
    font-size: 1.8rem;
  }
  
  .solanta-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: block;
}

.accent-color {
  color: var(--cta);
}

.gradient-divider {
  height: 60px;
  background: linear-gradient(to bottom, var(--bg-main), var(--white));
}

.section-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--gradient);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.7;
}

/* Benefits Section */
.benefits {
  padding: 100px 0 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.benefits:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/solanta/pattern-dots.png') repeat;
  opacity: 0.05;
  z-index: 0;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card.neomorphic {
  box-shadow: var(--shadow-soft);
  border: none;
}



.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 20px rgba(174, 208, 219, 0.5), -12px -12px 20px rgba(255, 255, 255, 0.9);
}

.benefit-card:hover .benefit-icon {
  background: var(--cta);
  color: var(--white);
  transform: scale(1.1);
}

.benefit-card:hover h3 {
  color: #002B4E;
}

.benefit-card:hover .learn-more {
  color: var(--primary);
  padding-left: 5px;
}

.benefit-card:hover .learn-more i {
  transform: translateX(5px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--bg-main);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: var(--transition);
  box-shadow: inset 2px 2px 5px rgba(174, 208, 219, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.8);
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
  transition: var(--transition);
}

.benefit-card p {
  margin-bottom: 20px;
  color: var(--text-light);
  transition: var(--transition);
  font-size: 15px;
  line-height: 1.6;
}

.benefit-cta {
  margin-top: 20px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.learn-more i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: var(--transition);
}

/* Benefits CTA */
.benefits-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.benefits-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.benefits-cta .cta-content h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.benefits-cta .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1.1rem;
}

.benefits-cta .btn {
  white-space: nowrap;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--white);
  color: var(--primary);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-cta .container {
    flex-direction: column;
    text-align: center;
  }
  
  .benefits-cta .btn {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .benefits {
    padding: 80px 0 0;
  }
  
  .benefits-cta {
    padding: 50px 0;
    margin-top: 60px;
  }
  
  .benefits-cta .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .benefits-cta .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 30px 25px;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .benefits-cta .btn {
    width: 100%;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0 96px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.how-it-works .section-header {
  margin-bottom: 4rem;
}

.how-it-works .section-subtitle {
  color: var(--cta);
  margin-bottom: 1rem;
}

.block-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 48px;
}

.block-container.reverse {
  flex-direction: row-reverse;
}

.block-content {
  flex: 1;
  max-width: 600px;
}

.block-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: #002B4E;
  margin-bottom: 1.5rem;
}

.block-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.block-content .small-note {
  font-size: 14px;
  font-style: italic;
  opacity: 0.8;
}

.block-image {
  flex: 1;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.block-card.has-label {
  padding-top: 60px;
}

.block-label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--cta);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.feature-list li i {
  color: var(--cta);
  margin-right: 12px;
  font-size: 18px;
  background: #E0F8F6;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-container {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .block-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .block-container.reverse {
    flex-direction: column;
  }
  
  .block-content,
  .block-image {
    max-width: 100%;
  }
  
  .block-card {
    padding: 30px;
  }
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-slides {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

.slide-description {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.slide-description h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #00b4d8;
}

/* Pricing Section */
.pricing {
  padding: 96px 0 6rem;
  background-color: #F8FBFD;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #00C8AA;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #002B4E;
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  color: #556B7A;
  max-width: 600px;
  margin: 0 auto;
}

/* Soft separator for pricing section */
.pricing::before {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #00b4d8;
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--cta);
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 200, 170, 0.2);
  z-index: 2;
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00b4d8;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}

.pricing-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  margin-right: 0.5rem;
  color: #00b4d8;
}

.feature-disabled {
  color: #adb5bd;
}

.feature-disabled i {
  color: #dc3545 !important;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 28px;
  text-align: center;
  background-color: var(--cta);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 200, 170, 0.2);
  transition: all 0.2s ease;
}

.btn-pricing:hover {
  background-color: var(--cta-hover);
  box-shadow: 0 6px 18px rgba(0, 200, 170, 0.3);
  transform: translateY(-3px);
}

/* Basic plan button - soft gray-blue */
.pricing-card:first-child .btn-pricing {
  background-color: #6E7D8B;
  box-shadow: 0 4px 12px rgba(110, 125, 139, 0.2);
  margin-top: auto;
}

.pricing-card:first-child .btn-pricing:hover {
  background-color: #5D6C7A;
  box-shadow: 0 6px 18px rgba(110, 125, 139, 0.3);
}

/* Pro plan button - strong blue */
.btn-pricing.featured {
  background-color: #00A9E0;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 169, 224, 0.2);
  margin-top: auto;
}

.btn-pricing.featured:hover {
  background-color: #0090C1;
  box-shadow: 0 6px 18px rgba(0, 169, 224, 0.3);
}

/* Expert plan button - teal */
.pricing-card:last-child .btn-pricing {
  background-color: #00C8AA;
  box-shadow: 0 4px 12px rgba(0, 200, 170, 0.2);
  margin-top: auto;
}

.pricing-card:last-child .btn-pricing:hover {
  background-color: #00B096;
  box-shadow: 0 6px 18px rgba(0, 200, 170, 0.3);
}

/* Comparison Section */
.comparison {
  padding: 6rem 0;
  background-color: #fff;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.comparison-table td i.fas.fa-check {
  color: #00b4d8;
  font-size: 1.25rem;
}

.comparison-table .total-row {
  background-color: #f8f9fa;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #6c757d;
  font-size: 0.875rem;
  margin: 0;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: #fff;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: #f8f9fa;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25rem;
}

.faq-toggle {
  color: #00b4d8;
  font-size: 1.25rem;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

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

/* Contact Form Section */
.contact {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: #00b4d8;
  outline: none;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .solanta-hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .solanta-hero .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solanta-hero h1 {
    font-size: 2.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background-color: #008CBA !important;
  color: var(--white) !important;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #00C8AA !important;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white) !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--white) !important;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
  color: var(--white) !important;
}

.footer-bottom p{
  color: var(--white) !important;
}