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

  body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  }

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

  .container.bridge {
  background-color: #2ca67d;
  padding: 50px;
  border-radius: 32px;
  width: 90%
  }

  /* Navigation */
  .nav {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  }

  .nav.last {
  background-color: #f2f2f2;
  }

  .nav-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  }

  .nav-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 8px;
  }

  .nav-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  }

  /* Hero Section */
  .hero {
  height: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
  }

  .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
  }

  .hero-content {
  position: relative;
  z-index: 1;
  }

  .hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.014em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1em;
  animation: fadeInUp 1s ease-out;
  }

  .hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  padding-inline: clamp(0px, 12vw, 145px);
  animation: fadeInUp 1s ease-out 0.2s both;
  }

  .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2ca67d;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  border: 2px solid #2ca67d;
  outline: none;
  }

  .cta-button.last {
  background-color: white;
  color: #333;
  border: 2px solid white;
  }

  .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  /* Video Section */
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  /* Features Section */
  .features {
  background: #ffffff;
  padding-top: 80px;
  position: relative;
  }

  .features::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  }

  .features-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: #333;
  }

  .feature {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  }

  .feature.last {
  margin-bottom: 0;
  }

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

  .feature:nth-child(even) {
  flex-direction: row-reverse;
  }

  .feature-gif {
  flex: 1;
  max-width: 600px;
  }

  .feature-gif video {
  width: 600px;
  height: 600px;
  border: 3px solid rgba(156, 156, 156, .5);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
  }

  .feature-content {
    flex: 1;
    padding: 2rem;
  }

  .feature-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
  }

  .feature-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
  }

  /* Bridge Section */
  .bridge {
    padding-top: 80px;
    text-align: center;
    color: white;
  }

  .bridge p {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  line-height: 1.2em;
  }

  /* FAQ Section */
  .faq {
  padding-top: 80px;
  }

  .faq-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
  }

  .faq-item {
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  }

  .faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s ease;
  }

  .faq-arrow {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50% 0px;
  transition: transform 0.2s ease;
  }

  .faq-arrow::before {
  content: '×';
  transform: rotate(45deg);
  }

  .faq-item.active .faq-arrow::before {
  content: '+';
  transform: rotate(0deg);
  }

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

  .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease;
  padding: 0 2rem;
  }

  .faq-answer.active {
  max-height: 200px;
  padding: 0 2rem 2rem 2rem;
  }

  .faq-answer p {
  margin: 0;
  padding-top: 0;
  }

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

  a.privacy-link {
  color: #333;
  text-decoration: none;
  }

  a.privacy-link:hover {
  text-decoration: underline;
  }

  /* PRIVACY POLICY */
  .privacy-page {
    background: #ffffff;
    min-height: 100vh;
    padding: 60px 0 80px 0;
  }

  .privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
  }

  .privacy-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }

  .privacy-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
  }

  .privacy-content p, .privacy-content ul {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .privacy-content ul {
  margin-left: 0;
  padding-left: 0;
  list-style-position: inside;
}

  .privacy-content strong {
    font-weight: 600;
  }

  .contact-email {
    color: #333;
    text-decoration: none;
  }

  .contact-email:hover {
    text-decoration: underline;
  }

  /* RESPONSIVE STYLES */

/* Mobile: 0px - 600px */
@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .container.bridge {
    padding: 30px 25px;
    border-radius: 20px;
    width: 95%;
  }

  /* Navigation */
  .nav-text {
    font-size: 1.1rem;
  }

  .nav-content {
    gap: 0.5rem;
  }

  /* Hero Section */
  .hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-inline: 0;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 1rem;
  }

  /* Features Section */
  .features {
    padding-top: 60px;
  }

  .features-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .feature {
    flex-direction: column !important;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
  }

  .feature-gif {
    max-width: 100%;
  }

  .feature-gif video {
    width: 100%;
    max-width: 350px;
    height: 350px;
    border-radius: 15px;
  }

  .feature-content {
    padding: 1rem 0;
  }

  .feature-content h3 {
    font-size: 1.5rem;
  }

  .feature-content p {
    font-size: 1rem;
  }

  /* Bridge Section */
  .bridge {
    padding-top: 60px;
  }

  .bridge p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* FAQ Section */
  .faq {
    padding-top: 60px;
  }

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

  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }

  .faq-answer.active {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  /* Privacy Policy */
  .privacy-page {
    padding: 40px 0 60px 0;
  }
  
  .privacy-content {
    padding: 0 15px;
  }

  .privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .privacy-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
  }

  .privacy-content p {
    font-size: 0.95rem;
  }
}

  /* Tablet: 601px - 1024px */
  @media (min-width: 601px) and (max-width: 1024px) {
    .container {
      padding: 0 30px;
    }

    .container.bridge {
      padding: 40px 35px;
      border-radius: 28px;
      width: 92%;
    }

    /* Navigation */
    .nav-text {
      font-size: 1.2rem;
    }

    /* Hero Section */
    .hero {
      padding-top: 70px;
      padding-bottom: 50px;
    }

    .hero h1 {
      font-size: 3.2rem;
      margin-bottom: 1.2rem;
    }

    .hero p {
      font-size: 1.15rem;
      margin-bottom: 2.2rem;
      padding-inline: 20px;
    }

    .cta-button {
      padding: 11px 19px;
      font-size: 1.05rem;
    }

    /* Features Section */
    .features {
      padding-top: 70px;
    }

    .features-title {
      font-size: 2.5rem;
      margin-bottom: 3.5rem;
    }

    .feature {
      gap: 3rem;
      margin-bottom: 5rem;
    }

    .feature-gif {
      max-width: 500px;
    }

    .feature-gif video {
      width: 500px;
      height: 500px;
      border-radius: 18px;
    }

    .feature-content {
      padding: 1.5rem;
    }

    .feature-content h3 {
      font-size: 1.8rem;
    }

    .feature-content p {
      font-size: 1.05rem;
    }

    /* Bridge Section */
    .bridge {
      padding-top: 70px;
    }

    .bridge p {
      font-size: 2rem;
      margin-bottom: 1.8rem;
    }

    /* FAQ Section */
    .faq {
      padding-top: 70px;
    }

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

    .faq-question {
      padding: 1.6rem;
      font-size: 1.05rem;
    }

    .faq-answer.active {
      padding: 0 1.6rem 1.6rem 1.6rem;
    }

    /* Privacy Policy */
    .privacy-page {
      padding: 50px 0 70px 0;
    }
    
    .privacy-content {
      padding: 0 30px;
    }

    .privacy-content h1 {
      font-size: 3.2rem;
    }

    .privacy-content h3 {
      font-size: 1.15rem;
    }

    .privacy-content p {
      font-size: 1.05rem;
    }
  }

  /* Desktop: 1025px and above */
  @media (min-width: 1025px) {
    .container {
      padding: 0 40px;
    }

    .container.bridge {
      padding: 50px;
      border-radius: 32px;
      width: 90%;
    }

    /* Navigation */
    .nav-text {
      font-size: 1.3rem;
    }

    /* Hero Section */
    .hero {
      padding-top: 80px;
      padding-bottom: 60px;
    }

    .hero h1 {
      font-size: 4.5rem;
      margin-bottom: 1.5rem;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      padding-inline: 145px;
    }

    .cta-button {
      padding: 12px 20px;
      font-size: 1.1rem;
    }

    /* Features Section */
    .features {
      padding-top: 80px;
    }

    .features-title {
      font-size: 3rem;
      margin-bottom: 4rem;
    }

    .feature {
      gap: 4rem;
      margin-bottom: 6rem;
    }

    .feature-gif {
      max-width: 600px;
    }

    .feature-gif video {
      width: 600px;
      height: 600px;
      border-radius: 20px;
    }

    .feature-content {
      padding: 2rem;
    }

    .feature-content h3 {
      font-size: 2rem;
    }

    .feature-content p {
      font-size: 1.1rem;
    }

    /* Bridge Section */
    .bridge {
      padding-top: 80px;
    }

    .bridge p {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    /* FAQ Section */
    .faq {
      padding-top: 80px;
    }

    .faq-title {
      font-size: 3rem;
      margin-bottom: 2rem;
    }

    .faq-question {
      padding: 2rem;
      font-size: 1.1rem;
    }

    .faq-answer.active {
      padding: 0 2rem 2rem 2rem;
    }

    /* Privacy Policy */
    .privacy-page {
      padding: 60px 0 80px 0;
    }
    
    .privacy-content {
      padding: 0 40px;
    }

    .privacy-content h1 {
      font-size: 4rem;
    }

    .privacy-content h3 {
      font-size: 1.2rem;
    }

    .privacy-content p {
      font-size: 1rem;
    }
  }