@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }

  .layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  
  .text-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 600px;
    align-items: flex-start;
  }
  
  .logo-btn {
    border: 1px solid #4b5563;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 35px;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
  }
  
  .heading {
    font-size: 30px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
  }
  
  .description {
    font-size: 22px;
    color: #4b5563;
    line-height: 1.5;
    max-width: 500px;
  }
  
  .action-btn {
    background-color: #2563eb;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
  }
  
  .image-section {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .image-section img {
    width: 100%;
    max-width: 585px;
    height: auto;
    object-fit: cover;
    border-radius: 50px;
  }
  
  /* Desktop responsiveness */
  @media (min-width: 768px) {
    .layout-container {
      flex-direction: row;
      align-items: flex-start;
    }
  
    .text-section,
    .image-section {
      width: 50%;
    }
  
    .heading {
      font-size: 30px;
    }
  }

  /* section 2 */
  .why-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .why-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .why-section .intro {
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 2 columns */
    gap: 40px;
    justify-items: left;
  }
  
  .feature-box {
    text-align: left;
  }
  
  .feature-icon i {
    font-size: 40px;
    color: #6C8CFF;
    margin-bottom: 15px;
  }
  
  .feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .feature-description {
    font-size: 1rem;
    color: #555;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .why-section {
      padding: 40px 15px;
    }
  
    .why-section h2 {
      font-size: 2rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr; /* Mobile: single column */
      gap: 30px;
      justify-items: left;
      padding-left: 10px;
    }
  
    .feature-box {
      text-align: left;
      max-width: 90%;
      padding-left: 10px;
    }
  
    .feature-icon i {
      font-size: 36px;
    }
  
    .feature-title {
      font-size: 1.1rem;
    }
  
    .feature-description {
      font-size: 0.95rem;
    }
  }
  

    /* section 3 */

    .involved-section {
      text-align: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      box-sizing: border-box;
    }
    
    .involved-section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      font-weight: 700;
    }
    
    .involved-section p {
      font-size: 1.1rem;
      color: #555;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    
    .user-cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr); /* Default: 4 columns */
      gap: 30px;
      justify-items: center;
    }
    
    .user-card {
      width: 100%;
      max-width: 250px;
      height: 250px;
      background: #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.2rem;
      font-weight: 500;
      text-align: center;
      padding: 15px;
      box-sizing: border-box;
    }
    
    /* Responsive styles */
    @media (max-width: 1024px) {
      .user-cards {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
      }
    }
    
    @media (max-width: 600px) {
      .involved-section h2 {
        font-size: 2rem;
      }
    
      .involved-section p {
        font-size: 1rem;
      }
    
      .user-cards {
        grid-template-columns: 1fr; /* Mobile: single column */
      }
    
      .user-card {
        max-width: 426px;
        height: 426px;
        padding: 30px 20px;
        font-size: 1rem;
      }
    }
    



/* section 4 */
.outer-container {
  background-color: #e6effc;
  width: 100vw;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.content-wrapper {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

/* Switch to row layout on tablets and above */
@media (min-width: 640px) {
  .content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.text-content {
  flex: 1;
  max-width: 640px;
  text-align: center;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .text-content {
    text-align: left;
    padding: 0;
  }
}

.text-content h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .text-content h2 {
    font-size: 36px;
  }
}

.text-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}

.image-box {
  width: 100%;
  max-width: 620px;
  height: 320px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-box span {
  position: absolute;
  color: black;
  font-size: 12px;
  pointer-events: none;
  text-align: center;
}
      /* section 5  */

      .why-section-2 {
        min-height: 10vh;
        max-width: 1100px;
        margin: 0 auto;
        padding: 60px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
      }
      
      .features-grid-2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
        gap: 40px;
        justify-items: start;
      }
      
      .feature-box {
        text-align: left;
      }
      
      .feature-icon i {
        font-size: 36px;
        color: #6C8CFF;
        margin-bottom: 15px;
      }
      
      .feature-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
      }
      
      .feature-description {
        font-size: 1rem;
        color: #555;
      }
      
      /* Responsive styles */
      @media (max-width: 1024px) {
        .features-grid-2 {
          grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
        }
      }
      
      @media (max-width: 600px) {
        .why-section-2 {
          padding: 40px 15px;
        }
      
        .features-grid-2 {
          grid-template-columns: 1fr; /* Mobile: 1 column */
        }
      
        .feature-title {
          font-size: 1.1rem;
        }
      
        .feature-description {
          font-size: 0.95rem;
        }
      }
      
    


    /* section 6 */


    .section-wrapper {
      width: 100%;
      min-height: 50vh;
      background-color: #f0f4ff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      box-sizing: border-box;
    }
    
    .content-box {
      text-align: center;
      max-width: 800px;
      width: 100%;
    }
    
    .content-box h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      font-weight: 700;
      color: #222;
    }
    
    .content-box p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #555;
    }
    
    .content-box .cta-button {
      padding: 12px 24px;
      background-color: #3366ff;
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      font-size: 1rem;
      text-decoration: none;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    
    .content-box .cta-button:hover {
      background-color: #254eda;
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
      .content-box h1 {
        font-size: 2rem;
      }
    
      .content-box p {
        font-size: 1rem;
      }
    
      .content-box .cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
      }
    }
    
    @media (max-width: 480px) {
      .content-box h1 {
        font-size: 1.7rem;
      }
    
      .content-box p {
        font-size: 0.95rem;
      }
    
      .content-box .cta-button {
        font-size: 0.9rem;
        padding: 10px 18px;
      }
    }
    



    /* Email popup */
    /* Basic Reset */
* {
  box-sizing: border-box;
}

.open-modal-btn {
  padding: 12px 24px;
  background-color: #3366ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}

/* Modal Overlay */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  padding: 70px 70px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.modal-content1 {
  position: relative;
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  padding: 70px 70px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.modal-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.modal-form button {
  padding: 12px;
  background-color: #3366ff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.modal-note {
  font-size: 0.8rem;
  color: #666;
  max-width: 300px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 500px) {
  .modal-title {
    font-size: 1.4rem;
  }

  .modal-form input,
  .modal-form button {
    font-size: 0.95rem;
    padding: 10px;
  }
}


/* Thank you page */
    
.thankyou-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 100vh;
  background-color: #ffffff;
}

.thankyou-content {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  width: 100%;
}

.thankyou-text {
  flex: 1;
  padding: 2rem;
}

.thankyou-text h1 {
  font-size: 56px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.thankyou-text p {
  font-size: 18px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.thankyou-text em {
  font-style: italic;
  font-weight: 600;
}

.thankyou-text button {
  background-color: #2563eb;
  color: white;
  padding: 14px 24px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.thankyou-text button:hover {
  background-color: #1d4ed8;
}

.thankyou-image {
  flex: 1;
  background-color: #d1d5db;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thankyou-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Responsive styles */
@media (min-width: 768px) {
  .thankyou-content {
    flex-direction: row;
  }

  .thankyou-text,
  .thankyou-image {
    padding: 3rem;
  }
}

/* Content Modal */
button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  max-height: 90vh;
  max-width: auto;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
}
.modal-content1 {
  background: white;
  max-height: 90vh;
  max-width: auto;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.cta-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 15px;
  }
}

.quote-section {
  background-color: #e6f0fb;
  padding: 30px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.quote-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.quote-text {
  font-style: italic;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  line-height: 1.6;
}

.quote-text::before {
  content: "“";
  font-size: 60px;
  color: #777;
  position: absolute;
  left: 0;
  top: -20px;
}

.quote-text::after {
  content: "”";
  font-size: 60px;
  color: #777;
  position: absolute;
  right: 0;
  bottom: -20px;
}

.quote-author {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}
/* Footer styling */
    .taa-footer {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: #ffffff;
        padding: 10px;
    }
    
    .footer-container {
        max-width: 1400px;
        margin: 0;
    }
    
    /* Enterprise Partner Section */
    .enterprise-partner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-bottom: 17px;
        padding-top: 20px;
        flex-wrap: wrap;
        text-align: center;
    }

    .enterprise-logo img {
        width: 240px;
        height: auto;
        opacity: 0.95;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .enterprise-logo img:hover {
        transform: scale(1.07);
        opacity: 1;
    }

    .partner-statement {
        font-size: 1.05em;
        font-weight: 600;
        color: #e8edf4;
        letter-spacing: 0.4px;
        margin: 0;
    }

    .alliance-logo img {
        width: 240px;
        height: auto;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .alliance-logo img:hover {
        transform: scale(1.07);
        opacity: 1;
    }
    
    /* Voltaire Quote Section */
    .voltaire-quote {
        text-align: center;
        padding: 10px 10px;
    }
    
    .voltaire-quote blockquote {
        font-size: 1.2em;
        font-style: italic;
        margin-bottom: 6px;
        line-height: 1.5;
        color: #f8f9fa;
    }
    
    .voltaire-quote cite {
        padding-left: 560px;
        font-size: 0.9em;
        font-style: normal;
        color: #ffff;
        font-weight: 500;
    }
    
    /* Privacy Section */
    .privacy-section {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        padding: 18px 22px;
        margin: 20px 0;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(4px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .privacy-section:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .privacy-section h3 {
        font-size: 1.1em;
        font-weight: 600;
        margin-bottom: 8px;
        color: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.2px;
    }

    .privacy-icon {
        margin-right: 8px;
        font-size: 1em;
        color: #f39c12;
    }

    .privacy-section p {
        font-size: 0.9em;
        line-height: 1.6;
        color: #e0e6eb;
        margin-bottom: 15px;
        text-align: center;
    }

    .privacy-link {
        display: inline-block;
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        color: black;
        padding: 8px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9em;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(243, 156, 18, 0.35);
    }

    .privacy-link:hover {
        background: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
        transform: translateY(-1.5px);
        box-shadow: 0 5px 14px rgba(243, 156, 18, 0.45);
    }
    
    /* Alliance Information Grid */
    .alliance-info-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .info-card {
        border-radius: 10px;
        padding: 15px 18px;
        font-size: 13px;
        color: #ddd;
        text-align: left;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .info-card h3 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #fff;
    }

    .info-card h4 {
        font-size: 13px;
        font-weight: 600;
        margin-top: 10px;
        color: #ccc;
    }

    .info-card p,
    .info-card ul li {
        list-style: none;
        font-size: 12px;
        line-height: 1.5;
    }

    .info-card ul {
        margin-top: 6px;
    }

    .info-card li {
        margin-bottom: 4px;
    }

    .learn-more {
        display: inline-block;
        margin-top: 8px;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        text-decoration: underline;
    }

    .learn-more:hover {
        text-decoration: underline;
        color: yellow;
    }
    
    /* Enterprises Section Heading */
    .enterprises-heading {
        text-align: center;
        font-size: 1.8em;
        font-weight: 700;
        color: #b0b8c1;
        margin-top: 40px;
        margin-bottom: 7px;
        letter-spacing: 0.5px;
    }
    
    /* Footer Columns */
    .footer-columns {
        padding: 20px 40px 60px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
    }

    .footer-column {
        padding:25px 50px 50px 50px;
    }

    .footer-column h4 {
        padding: 0 0 20px 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: #b0b8c1;
        margin: 0;
        letter-spacing: 0.5px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column li {
        margin-bottom: 14px;
    }

    .footer-column li:last-child {
        margin-bottom: 0;
    }

    .footer-column a {
        color: #b0b8c1;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
        padding: 0;
    }

    .footer-column a:hover {
        color: #ffffff;
        padding-left: 5px;
        text-decoration: underline;
    }

    .footer-column p {
        font-size: 0.95rem;
        color: #b0b8c1;
        margin-bottom: 0;
        padding: 0;
        line-height: 1.6;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        width: fit-content;
        margin: 0 auto;
    }

    .copyright {
        font-size: 0.9rem;
        color: #b0b8c1;
    }

    .copyright a {
        color: #f39c12;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .copyright a:hover {
        color: #005a9e;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .taa-footer {
            padding: 20px 15px 20px;
        }
        
        .alliance-info-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-columns {
            grid-template-columns: 1fr;
        }
        
        .voltaire-quote blockquote {
            font-size: 1.2em;
        }
        
        .voltaire-quote cite {
            padding-left: 0;
        }
        
        .cookie-banner {
            padding: 20px 15px;
        }
        
        .cookie-actions {
            flex-direction: column;
        }
        
        .cookie-btn {
            width: 100%;
        }
        
        .cookie-modal-content {
            padding: 25px;
        }
        
        .modal-footer {
            flex-direction: column;
        }
    }

    /* No Tracking Highlight Box */
        .no-tracking-highlight {
            place-items: center;
            margin-left: auto;
            margin-right: auto;
            max-width: auto;
            width: 650px;
            background: linear-gradient(145deg, rgba(106, 90, 205, 0.08), rgba(138, 43, 226, 0.04));
            border: 2px solid rgba(138, 43, 226, 0.5);
            border-radius: 10px;
            padding: 24px 28px;
            margin-top: 30px;
            margin-bottom: 6px;
            box-shadow: 0 4px 16px rgba(138, 43, 226, 0.12), 
                        inset 0 1px 0 rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
        }

        @media (max-width: 768px) {
            .no-tracking-highlight {
                padding: 20px 18px;
                margin-top: 20px;
                width: auto;
            }
        }

        @media (max-width: 480px) {
            .no-tracking-highlight {
                padding: 16px 14px;
                border-width: 1.5px;
                width: auto;
            }
        }

        .no-tracking-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(138, 43, 226, 0.4) 50%, 
                transparent 100%);
        }

        .no-tracking-highlight h3 {
            font-size: 1.25em;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(138, 43, 226, 0.2);
        }

        @media (max-width: 768px) {
            .no-tracking-highlight h3 {
                font-size: 1.15em;
                margin-bottom: 14px;
            }
        }

        @media (max-width: 480px) {
            .no-tracking-highlight h3 {
                font-size: 1.05em;
                flex-direction: column;
                gap: 8px;
            }
        }

        .no-tracking-desc {
            font-size: 0.95em;
            line-height: 1.7;
            color: #f0f4f7;
            margin-bottom: 14px;
            text-align: left;
            padding: 0 10px;
        }

        @media (max-width: 768px) {
            .no-tracking-desc {
                font-size: 0.9em;
                padding: 0 5px;
            }
        }

        @media (max-width: 480px) {
            .no-tracking-desc {
                font-size: 0.85em;
                line-height: 1.6;
            }
        }

        .no-tracking-desc strong {
            color: #ffffff;
            font-weight:bolder;
        }

        .no-tracking-desc:last-of-type {
            margin-bottom: 18px;
            font-size: 1em;
            text-align: center;
        }

        .no-tracking-highlight a {
            display: inline-block;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95em;
            padding: 8px 16px;
            border-radius: 20px;
            background: rgb(113, 20, 199);
            border: 1px solid rgba(52, 152, 219, 0.3);
            transition: all 0.3s ease;
        }

        @media (max-width: 480px) {
            .no-tracking-highlight a {
                font-size: 0.9em;
                padding: 7px 14px;
            }
        }

        .no-tracking-highlight a:hover {
            background: rgba(138, 43, 226, 0.5);
            border-color: rgba(52, 152, 219, 0.5);
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(52, 152, 219, 0.2);
        }

        /* Shield Icon Enhancement */
        .shield-icon {
            display: inline-block;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }


  /* media query for responsive */

  /* @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      padding: 30px;
      text-align: left;
    }

    .left, .right {
      padding: 0;
    }

    .headline {
      font-size: 2rem;
    }
  }

  @media (max-width: 600px) {
    .involved-section h2 {
      font-size: 2rem;
    }

    .involved-section p {
      font-size: 1rem;
    }

    .user-card {
      width: 100%;
      max-width: 300px;
    }
  }
  @media (min-width: 640px) {
    .content-wrapper {
      flex-direction: row;
      align-items: center;
    }
  }
  @media (min-width: 640px) {
    .text-content {
      text-align: left;
    }
  }

 

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center; /* Optional: center on small screens 
  }
} 
*/
