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

html,
body {
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

/* Simple Header for policy pages */
.simple-header {
  background: #1a202c;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.header-logo:hover {
  color: #0f9a93;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a202c 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 154, 147, 0.2), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.2), transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.15), transparent 50%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.logo-container {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.company-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #0f9a93 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #0f9a93 0%, #0d7e78 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(15, 154, 147, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(15, 154, 147, 0.6);
  color: white;
}

.cta-button:hover::before {
  left: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Services Section */
.services-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #718096;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f9a93, #0d7e78);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon {
  font-size: 3rem;
  color: #0f9a93;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

.service-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: #0f9a93;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-card-link:hover {
  color: #0d7e78;
  transform: translateX(5px);
}

/* Technologies Section */
.tech-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #000000 0%, #1a202c 100%);
  position: relative;
  overflow: hidden;
}

.tech-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.tech-section .section-title,
.tech-section .section-subtitle {
  color: white;
}

.tech-section .section-title::after {
  background: linear-gradient(90deg, #0f9a93, #0d7e78);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.tech-item:hover .tech-icon {
  transform: scale(1.2);
}

.tech-icon {
  font-size: 3rem;
  color: white;
  transition: transform 0.3s ease;
}

.tech-name {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-align: center;
}

/* Platforms Section */
.platforms-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  min-width: 120px;
  transition: all 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-5px);
}

.platform-item:hover .platform-icon {
  transform: scale(1.15);
  color: #0f9a93;
}

.platform-icon {
  font-size: 3.5rem;
  color: #2d3748;
  transition: all 0.3s ease;
}

.platform-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #000000 0%, #1a202c 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-button-large {
  font-size: 1.25rem;
  padding: 1.5rem 3rem;
}

/* Content Sections (Privacy, Terms, Copyright) */
.content-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.content-section:nth-child(even) {
  background: #f8f9fa;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #0f9a93;
}

.content-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #0f9a93;
}

.content-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-wrapper p {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1rem;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-wrapper li {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.content-wrapper a {
  color: #0f9a93;
  text-decoration: none;
  transition: color 0.3s ease;
}

.content-wrapper a:hover {
  color: #0d7e78;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0f9a93;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* AI Services Page Specific Styles */
.ai-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.ai-service-card-large {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.ai-service-card-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0f9a93, #14b8a6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ai-service-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ai-service-card-large:hover::before {
  transform: scaleX(1);
}

.ai-service-icon {
  font-size: 3.5rem;
  color: #0f9a93;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.ai-service-image {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.ai-service-card-large:hover .ai-service-image img {
  transform: scale(1.05);
}

.ai-service-card-large:hover .ai-service-icon {
  transform: scale(1.1);
}

.ai-service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.ai-service-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ai-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.ai-service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

.ai-service-features li:last-child {
  border-bottom: none;
}

.ai-service-features i {
  color: #0f9a93;
  font-size: 1.1rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #0f9a93 0%, #0d7e78 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(15, 154, 147, 0.3);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 154, 147, 0.4);
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #0f9a93, #14b8a6);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(15, 154, 147, 0.3);
}

.process-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.process-description {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    padding: 1rem;
  }

  .services-section,
  .tech-section,
  .platforms-section,
  .cta-section,
  .content-section {
    padding: 4rem 1rem;
  }

  .logo-container {
    top: 1rem;
    left: 1rem;
    gap: 0.5rem;
  }

  .company-logo {
    width: 40px;
    height: 40px;
  }

  .company-name {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .ai-services-grid {
    grid-template-columns: 1fr;
  }

  .ai-service-card-large {
    padding: 2rem 1.5rem;
  }

  .ai-service-title {
    font-size: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-container {
    padding: 0 1rem;
  }
}

/* Website to App Page Styles */
.website-to-app-image {
  max-width: 900px;
  margin: 3rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.website-to-app-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-highlight {
  background: linear-gradient(135deg, #0f9a93, #14b8a6);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 800px;
  box-shadow: 0 15px 50px rgba(15, 154, 147, 0.3);
}

.feature-highlight h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.recommended {
  border: 3px solid #0f9a93;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0f9a93, #14b8a6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: #0f9a93;
  margin: 1.5rem 0;
}

.pricing-description {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2rem;
  min-height: 80px;
}

.pricing-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #0f9a93;
  border: 2px solid #0f9a93;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: #0f9a93;
  color: white;
  transform: translateY(-2px);
}

.pricing-button.primary {
  background: linear-gradient(135deg, #0f9a93, #14b8a6);
  color: white;
  border: none;
}

.pricing-button.primary:hover {
  box-shadow: 0 10px 30px rgba(15, 154, 147, 0.4);
}

.guarantee-section {
  background: #f7fafc;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  border-left: 5px solid #0f9a93;
}

.guarantee-section h3 {
  font-size: 1.75rem;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.guarantee-section i {
  color: #0f9a93;
}

.guarantee-section p {
  color: #4a5568;
  font-size: 1.1rem;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.testimonial-stars i {
  margin-right: 0.25rem;
}

.testimonial-text {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.testimonial-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-links a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #f7fafc;
  color: #0f9a93;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.testimonial-links a:hover {
  background: #0f9a93;
  color: white;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.faq-answer {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1rem;
}

.faq-answer ul {
  margin-top: 1rem;
  margin-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.faq-answer a {
  color: #0f9a93;
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.cta-section {
  text-align: center;
  margin-top: 4rem;
}
