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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: white;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background-color: transparent;
  backdrop-filter: blur(0px);
}

.header.scrolled {
  background-color: #363355;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .header {
    padding: 0 1.5rem;
  }
  .about-header {
    padding: 0 1.5rem;
  }
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 80px;
  height: 50px;
  object-fit: contain;
}

/* Navigation */
.nav-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-container {
    display: flex;
  }
}

.nav-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  position: relative;
}

.nav-item:hover {
  color: #d1d5db;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Get Started Button */
.cta-container {
  z-index: 10;
  display: none;
}

@media (min-width: 1024px) {
  .cta-container {
    display: block;
  }
}

.cta-button {
  padding: 0.5rem 1rem;
  background-color: #6e6ca9;
  color: white;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #5a5893;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
  transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: flex;
  align-items: center;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}

.mobile-menu-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  transition: transform 0.2s ease;
}

.mobile-menu-button.open .menu-icon {
  transform: rotate(90deg);
}

/* Mobile Dropdown */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #363355;
  border-top: 1px solid #6e6ca9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}

.mobile-nav-item {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-item:hover {
  background-color: #4b4870;
  border-left-color: #6e6ca9;
}

.mobile-nav-item.active {
  background-color: #4b4870;
  border-left-color: white;
}

.mobile-cta-container {
  padding: 0.75rem 1rem;
}

.mobile-cta-button {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #6e6ca9;
  color: white;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.875rem;
}

.mobile-cta-button:hover {
  background-color: #5a5893;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.hero-section {
  background-color: #363355;
  color: white;
  padding: 80px 0;
  padding-top: 128px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-container {
    background-color: #363355;
    color: white;
    padding: 80px 0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1000ms ease-in-out;
  opacity: 0;
}

.bg-image.active {
  opacity: 1;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  width: 100%;
  text-align: left;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1000ms ease-out;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 32px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1000ms ease-out;
}

.hero-image-div {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1000ms ease-out;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1000ms ease-out;
}

.btn {
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 300ms ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1);
}

.btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.btn-primary {
  background-color: white;
  color: #6e6ca9;
}

.btn-primary:hover {
  background-color: #e0e7ff;
}

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

.btn-secondary:hover {
  background-color: white;
  color: #363355;
}

.btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

/* Animation classes */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-700 {
  transition-delay: 700ms;
}

.trusted-section {
  padding: 32px 0;
  background-color: #f9fafb;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  justify-items: center;
  max-width: 500px;
  margin: 0 auto;
}

/* Third card spans both columns and centers itself */
.stats-grid .stat-card:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}

.stat-card {
  background-color: white;
  padding: 20px 16px;
  width: 100%;
  max-width: 180px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6e6ca9;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
}

.stat-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1f2937;
  margin-top: 16px;
}

.stat-description {
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animation delays */
.stat-card:nth-child(1) {
  transition-delay: 0ms;
}

.stat-card:nth-child(2) {
  transition-delay: 100ms;
}

.stat-card:nth-child(3) {
  transition-delay: 200ms;
}

.features-section {
  padding: 80px 0;
  background-color: #363355;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  justify-content: center;
}

.section-label {
  font-size: 1.125rem;
}

.section-divider {
  width: 120px;
  height: 1px;
  background-color: white;
  border: none;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.25rem;
  max-width: 768px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.feature-card {
  background-color: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  background-color: #6e6ca9;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1f2937;
}

.feature-description {
  color: #4b5563;
  line-height: 1.6;
}

/* Animation delays */
.feature-card:nth-child(1) {
  transition-delay: 0ms;
}

.feature-card:nth-child(2) {
  transition-delay: 100ms;
}

.feature-card:nth-child(3) {
  transition-delay: 200ms;
}

.feature-card:nth-child(4) {
  transition-delay: 300ms;
}

/* CTA Section Styles */
#cta {
  background-color: #363355;
  color: white;
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin: 1.5rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: #dbeafe;
}

.cta-image-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  animation: slow-bounce 5s ease-in-out infinite;
}

@keyframes slow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.get-started-btn {
  padding: 1rem 2rem;
  background-color: white;
  color: #6e6ca9;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  /* margin-bottom: 2rem; */
}

.get-started-btn:hover {
  background-color: #eff6ff;
}

.app-store-buttons {
  justify-content: center;
}

.app-store-btn {
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  height: 200px;
}

.app-store-btn:hover {
  opacity: 0.8;
}

.app-store-btn img {
  width: 130px;
  object-fit: contain;
}

/* FAQ Section Styles */
#faq {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-content.animate {
  opacity: 1;
  transform: translateY(0);
}

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

.faq-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
}

.faq-description {
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}

/* Accordion Styles */
.accordion {
  width: 100%;
  color: #4b5563;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-trigger {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: #111827;
}

.accordion-trigger:focus {
  outline-offset: 2px;
}

.accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.accordion-content.open {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.accordion-content-inner {
  color: #6b7280;
  line-height: 1.6;
}

/* Chevron SVG Icons */
.chevron-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  background-color: white;
  padding: 48px 0;
  border-top: 1px solid #e5e7eb;
}

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

.footer-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
  }
}

.footer-brand {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-brand {
    margin-bottom: 0;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.logo {
  width: 80px;
  height: 50px;
}

.brand-description {
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 448px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  cursor: pointer;
}

.contact-info {
  color: #6b7280;
  font-size: 14px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.link-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.link-list {
  list-style: none;
}

.link-list li {
  margin-bottom: 16px;
}

.link-list a {
  color: #6b7280;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.link-list a:hover {
  color: #111827;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Section Styles */
#how-it-works {
  padding: 5rem 0 0 0;
  background-color: #f9fafb;
}

.quick-process-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.text-center {
  text-align: center;
}

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

.header-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.subtitle {
  font-size: 1.125rem;
  color: #000;
  font-weight: 600;
}

.divider {
  width: 120px;
  height: 2px;
  background-color: #000;
  border: none;
}

.main-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.highlight {
  color: #6e6ca9;
}

.description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Grid Styles */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  background-color: #6e6ca9;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #1f2937;
  margin-top: 0.5rem;
}

.step-description {
  color: #6b7280;
}

/* Demo Section */
.demo-section {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.demo-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
}

.payment-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.payment-icon {
  background-color: #6e6ca9;
  color: white;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.payment-title {
  font-weight: 500;
  color: #000;
}

.payment-status {
  font-size: 0.875rem;
  color: #000;
}

.payment-amount {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
}

.payment-details {
  margin-bottom: 1rem;
}

.payment-method {
  display: flex;
  justify-content: between;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.card-info {
  display: flex;
  align-items: center;
}

.card-icon {
  width: 2.5rem;
  height: 1.5rem;
  background-color: #d1d5db;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

.card-number {
  font-weight: 500;
  color: #000;
}

.progress-bar {
  width: 100%;
  background-color: #e5e7eb;
  border-radius: 9999px;
  height: 0.625rem;
  margin-bottom: 1rem;
}

.progress-fill {
  background-color: #6e6ca9;
  height: 0.625rem;
  border-radius: 9999px;
  width: 75%;
}

.success-button {
  width: 100%;
  padding: 0.75rem;
  background-color: #6e6ca9;
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.success-button:hover {
  background-color: #5a5896;
}

.how-to-features-section {
  width: 100%;
}

.how-to-features-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.how-to-features-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.how-to-features-list {
  list-style: none;
  padding: 0;
}

.how-to-features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.how-to-feature-icon {
  color: #6e6ca9;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.how-to-feature-text {
  color: #000;
}

.about {
  padding: 10rem 2rem;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  gap: 2rem;
}
.about div p {
  font-size: medium;
  text-align: center;
}
.about-card {
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  width: 100%;
}

.copyright {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 16px;
}

.privacy-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 22px;
  background: #fff;
  color: #2c3e50;  
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}

.privacy-container   ul {
    padding-left: 20px;
}

.privacy-container  li {
    margin-bottom: 8px;
}

.privacy-container h2 {
    font-size: 1rem;
    font-weight: bold;
}

.privacy-container .section {
    margin-top: 30px;
}

.privacy-container .contact-info {
    margin-top: 20px;
}

/* Responsive Design */

/* smaller screens */
@media (min-width: 640px) {
  .button-container {
    flex-direction: row;
    gap: 0;
  }

  .button-container .btn:not(:last-child) {
    margin-right: 16px;
  }

  .hero-section {
    min-height: 100vh;
  }

  .content-wrapper {
    flex-direction: row;
  }

  .content {
    width: 60%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .button-container {
    justify-content: flex-start;
  }

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

  .faq-title {
    font-size: 1.5rem;
  }

  .accordion-trigger {
    padding: 1rem 0;
    font-size: 0.95rem;
  }
}

/* Medium screens */
@media (min-width: 768px) {
  #how-it-works {
    padding: 5rem 0 0 0;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-section {
    display: flex;
    flex-direction: row;
  }

  .demo-card {
    width: 50%;
  }

  .how-to-features-section {
    width: 50%;
  }

  .app-store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .copyright {
    margin-bottom: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    max-width: 800px;
    gap: 24px;
  }

  .stats-grid .stat-card:nth-child(3) {
    grid-column: auto;
    justify-self: center;
  }

  .stat-card {
    max-width: 220px;
    padding: 24px 20px;
  }

  .stat-title {
    font-size: 1.75rem;
  }

  .stat-description {
    font-size: 1rem;
  }

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

  .section-title {
    font-size: 2.25rem;
  }

  .trusted-section {
    padding: 48px 0;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-card {
    padding: 24px;
    width: auto;
    min-width: 200px;
  }

  .stat-icon {
    display: flex;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .stats-grid {
    gap: 32px;
  }

  .stat-card {
    max-width: 240px;
    padding: 28px 24px;
  }

  .hero-section {
    min-height: 100vh;
  }

  .content {
    width: 50%;
  }

  .hero-title {
    font-size: 3.75rem;
  }
  .faq-container {
    padding: 0 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about {
    padding: 10rem 5rem !important;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    flex-direction: row;
    gap: 2rem;
  }
  .about div p {
    font-size: 1.3rem;
    text-align: start;
  }

  .about-card {
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 350px;
  }
}
