/* General Styles */
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Variable.ttf') format('truetype');
}

@font-face {
    font-family: 'Satoshi Italic';
    src: url('fonts/Satoshi-VariableItalic.ttf') format('truetype');
}

body {
    font-family: 'Satoshi', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
   
}

/* Hero Section */
.hero {
    width: 100vw;
    height: 87vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    background: #372541 url('img/hero-bg.png') no-repeat right top/contain;
    padding-bottom: 10rem; /* da espacio para el overflow */
    overflow: visible;
}

.hero-images {
    position: absolute;
    bottom: -30px; /* desborda hacia abajo */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 1000px;
  }
  
  .hero-img {
    position: absolute;
    transition: all 0.3s ease-in-out;
  }
  
  .hero-img.desktop {
    width: 800px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    bottom: 0;
  }
  
  .hero-img.mobile {
    width: 300px;
    left: 1%;
    bottom: -60px;
    z-index: 3;
  }

/* Logo and CTA */
.hero-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-logo img {
    max-width: 300px;
}

.hero-cta {
    display: flex;
    gap: 10px;
}
.hero-cta button {
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}
.hero-cta .primary {
    background: #fff;
    color: #372541; 
    transition: all 1s;
}

.hero-cta .secondary {
    background: #fff;
    color: #372541; 
    transition: all 1s;
}
.hero-cta .primary:hover, .hero-cta .secondary:hover  {
    background: #b3b3b3;
}

/* Hero Text */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color:#fff;
}

/* Centered Rounded CTA */
.hero .rounded-cta {
    background: #fff;
    color: #372541; 
    font-family: 'Satoshi', sans-serif;
    padding: 15px 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1s;
}

.hero .rounded-cta:hover {
    background: #b3b3b3;
}

.hero .rounded-cta i {
    font-size: 1.2rem;
    color: #703e93;
}

/* Animación de Zoom para los textos del Hero */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero h1,
.hero p {
    animation: zoomIn 1s ease-out;
}


/* Stats Section */
.stats-section {
    padding: 250px 0 0;
    background:  url('img/hero-bg.jpg') no-repeat right top/contain;
}

.stats-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    text-align: left;
    gap: 20px;
}
.stat-item {
    flex: 1;
    padding: 20px 20px;
    margin: 10px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}


.stat-item h2 {
    font-size: 3rem;
    font-weight: bold;
    margin: 10px 0 0;
    text-align: left;
    color: #000;
}

.stat-item p {
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #000;
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
}

/* Video Section */

.video-container {
    max-width: 900px;
    margin: 100px auto -200px;
    position: relative;
}

/* Inicialmente el video estará invisible */
.video-container video {
    width: 100%;
    border-radius: 10px;
    opacity: 0;
    transform: translate(-50px, 50px);
    transition: opacity 0.5s ease-out, transform 1.2s ease-out;
}

/* Cuando el video entre en pantalla, se activa la animación */
.video-container video.animate {
    opacity: 1;
    transform: translate(0, 0);
}


/* Animación de entrada para el video */
@keyframes videoMove {
    from {
        transform: translate(-50px, 50px);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/* Feature Cards Section */
/* Contenedor general como antes */

.features-grid-section h2 {
    font-size: 2.5rem;
    line-height: 2.2rem;
    font-weight: bold;
    color: black;
    text-align: center;
}

.features-grid-section h2 span {
    color: #703e93;
}


.features-grid-section {
    background: #f8f8f8;
    padding: 300px 20px 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 70px auto 0;
}

/* Tarjeta */
.feature-box {
    background: linear-gradient(135deg, #1f0231, #3b0e4d); 
    color: #fff;
    border-radius: 20px;
    padding: 40px 50px 40px 30px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    min-height: 460px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.feature-box p {
    font-size: 1.5rem;
    color: #e2e2e2;
    line-height: 1.1;
}

/* Marca de agua (icono) en esquina inferior derecha */
.feature-box::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -5px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}
/* ::before para el fondo de cuadrícula */
.feature-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 75%;
    background: url('img/grid.png') no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

/* Ejemplo: asignar íconos individuales */
.feature-box.icon-clock::after {
    background-image: url('img/clock.png');
}

.feature-box.icon-check::after {
    background-image: url('img/check.png');
}

.feature-box.icon-template::after {
    background-image: url('img/template.png');
}

.feature-box.icon-lock::after {
    background-image: url('img/security.png');
    right: -12px;
}

.feature-box.icon-docs::after {
    background-image: url('img/files.png');
}

.feature-box.icon-briefcase::after {
    background-image: url('img/briefcase.png');
}

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


.features-section .cta-button {
    background: #372541;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-transform: uppercase;
    width: fit-content;
    margin: 90px auto 30px;
}

.features-section .cta-button:hover {
    background: #2b1c36;
}

.features-section .cta-button::after {
    content: '\2192'; /* Unicode for right arrow */
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
}

.features-section .cta-button:hover::after {
    transform: translateX(5px);
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    text-align: center;
    background: white;
}

.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
}

.pricing-section h2 span {
    color: #703e93;
}

.pricing-section p {
    font-size: 1.5rem;
    margin-bottom: 0px;
    color: #000;
}

.pricing-section .subtitle span{
    color: #703e93;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    flex-wrap: wrap;
}

/* Tarjetas de precios */
.pricing-card {
    background: white;
    border: 1px solid #ddd;
    padding: 25px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 1s ease-in-out; /* Movimiento de 1 segundo */
    cursor: pointer;
}
.pricing-card:hover {
    transform: scale(1.05); /* Hace zoom al 105% */
}

/* Asegurar que todas las tarjetas tengan la misma altura */
.pricing-card .features {
    flex-grow: 1;
    text-align: left;
    padding-left: 20px;
}

/* Tarjeta destacada */
.pricing-card.popular {
    background: #f4f0fa;
    border: 2px solid #703e93;
    padding-top: 30px; /* Reducimos el padding-top */
    position: relative;
}

/* Estilo para la etiqueta de "Most Popular" */
.pricing-card.popular .badge {
    position: absolute;
    top: -15px; /* Movemos el badge hacia arriba */
    left: 50%;
    transform: translateX(-50%);
    background: #703e93;
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    border-radius: 20px;
    font-weight: bold;
}

/* Títulos */
.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: black;
    margin-top: 20px;
}

/* Precio */
.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #703e93;
    margin-top: 10px;
}

/* Descripción */
.pricing-card .affidavits {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.pricing-card .description {
    font-size: 1rem;
    color: #000;
    margin-bottom: 15px;
}

/* Lista de características */
.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.pricing-card .features li {
    font-size: 0.95rem;
    color: #444;
    padding: 5px 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

/* Icono de lista */
.pricing-card .features li::before {
    content: "\f058"; /* Unicode de FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #703e93;
    position: absolute;
    left: 0;
}

/* Botón */
.pricing-card .pricing-btn {
    background: linear-gradient(to right, #703e93, #372541);
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: auto;
}

.pricing-card .pricing-btn:hover {
    background: linear-gradient(to right, #372541, #703e93);
}

/* FAQ Section */
.faq-section {
    background: #e6e6e6;
    padding: 60px 0;
    text-align: center;
}

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

.faq-help-btn {
    background: white;
    padding: 10px 80px;
    border-radius: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #703e93;
    margin-bottom: 40px;
}

.faq-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #000;
}


.faq-item {
    border-bottom: 1px solid #666;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    transition: color 0.3s ease-in-out;
}

.faq-item.active .faq-question {
    color: #703e93;
}

.faq-toggle {
    font-size: 1.6rem;
    color: #000;
    transition: transform 0.3s ease-in-out;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 1rem;
    color: #000;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Ajuste dinámico */
    padding: 15px 20px;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
}

.contact-title span {
    color: #703e93;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 30px;
}

/* Form Styling */
.contact-form {
    max-width: 700px;
    margin: auto;
}

.contact-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-form .row .col-md-6 {
    flex: 1;
}

.contact-form label {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
    padding-left: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 0px;
    font-size: 1rem;
    background: #f5f5f5;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #703e93;
}

/* Textarea */
.contact-form textarea {
    height: 120px;
    resize: none;
}

/* Submit Button */
.contact-submit-btn {
    background: #372541;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    margin-top: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.3s ease-in-out;
}

.contact-submit-btn:hover {
    background: #2b1c36;
}

.contact-submit-btn .arrow {
    transition: transform 0.3s ease-in-out;
}

.contact-submit-btn:hover .arrow {
    transform: translateX(5px);
}
.form-message {
    margin-top: 15px;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
}

.error-msg {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
}




.footer {
    background: linear-gradient(to right, #372541, #1a1a1a);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* Ajusta según necesites */
    height: 100%;
    background: url('img/footer.png') no-repeat right center;
    background-size: contain;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    min-width: 500px;
    margin-bottom: 10px;
}

.footer-slogan {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ddd;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    z-index: 1;
}

.footer-column {
    flex: 1;
    text-align: left;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-column p, 
.footer-column a {
    font-size: 0.9rem;
    color: #ddd;
    text-decoration: none;
}

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

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

.footer-column ul li a:hover {
    text-decoration: underline;
}
.footer-info a {
    color: white; /* Color blanco para visibilidad */
    text-decoration: none; /* Quita el subrayado predeterminado */
    font-weight: 500; /* Opcional: hace que se vea más sólido */
}

.footer-info a:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse */
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    font-size: 1.2rem;
    color: white;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.social-icons a:hover {
    color: #703e93;
}


/* RESPONSIVE DESIGN */


/* Para tablets y pantallas medianas (máx. 991px) */
@media (max-width: 991px) {
    .hero {
        height: 87vh;
        padding: 50px 20px 30px; /* Mayor padding arriba */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-logo img {
        max-width: 220px; /* Ajustamos el tamaño del logo */
        margin-bottom: 20px;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .hero-cta button {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: auto; /* Evita que sean demasiado anchos */
        min-width: 200px; /* Asegura que tengan un ancho consistente */
        max-width: 250px;
    }

    .hero h1 {
        font-size: 2.4rem;
        margin-top: 10px;
    }

    .hero p {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero .rounded-cta {
        padding: 12px 40px;
        font-size: 1rem;
        width: auto;
        min-width: 220px;
    }

    /* NUMBERS / STATS SECTION */
    .stats-section {
        padding: 60px 20px;
    }

    .stats-section .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .stat-item {
        align-items: center;
        text-align: center;
    }

    .stat-item h2 {
        font-size: 4.2rem; /* Números más grandes */
        font-weight: bold;
    }

    .stat-item p {
        font-size: 1.7rem; /* Texto más grande */
        font-weight: 600;
    }

    /* VIDEO SECTION */
    .video-section {
        padding: 60px 10px;
    }

    .video-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .video-section h2 {
        font-size: 2.3rem;
    }

    /* FEATURES SECTION */
    .features-grid-section {
        padding: 150px 10px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        max-height: none;
        background: #f5f5f5; /* Fondo más claro */
    }

    .feature-card .text-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
        background: #4a2a67; /* Color más oscuro para contraste */
    }

    .feature-card p {
        font-size: 1rem;
        color: #222; /* Color más oscuro para mejor legibilidad */
    }

    /* PRICING SECTION */
    .pricing-section {
        padding: 80px 10px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
    }

    /* CONTACT SECTION */
    .contact-section {
        padding: 80px 10px;
    }

    .contact-form .row {
        flex-direction: column;
    }

    .contact-form .row .col-md-6 {
        width: 100%;
    }

    /* FOOTER */
    .footer {
        padding: 80px 20px;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .footer-logo {
        min-width: 250px;
    }
}

/* Para móviles (máx. 767px) */
@media (max-width: 767px) {

    .hero {
        height: auto;
        min-height: unset;
        padding: 100px 20px 160px;
        background-position: center top;
        background-size: cover;
        text-align: center;
      }
    
      .hero-header {
        flex-direction: column;
        gap: 20px;
        position: static;
        text-align: center;
      }
    
      .hero-logo img {
        max-width: 250px;
      }
    
      .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
      }
    
      .hero-cta button {
        width: 100%;
        max-width: 250px;
      }
    
      .hero h1 {
        font-size: 2rem;
        margin-top: 40px;
        padding: 0 10px;
      }
    
      .hero p {
        font-size: 1.2rem;
        padding: 0 10px;
      }
    
      .hero .rounded-cta {
        font-size: 1rem;
        padding: 12px 30px;
        margin-top: 20px;
        width: 100%;
        max-width: 300px;
      }
    
      .hero-images {
        width: 100%;
        transform: translateX(-50%);
        left: 50%;
      }
    
      .hero-img.desktop {
        width: 90%;
        position: relative;
        transform: none;
        left: 0;
        bottom: 0px;
      }
    
      .hero-img.mobile {
        width: 40%;
        left: 10%;
        bottom: -60px;
      }

    /* NUMBERS / STATS SECTION */
    .stats-section {
        padding: 125px 15px;
    }

    .stat-item  {
        width: 90%;
    }

    .stat-item h2 {
        font-size: 3.5rem;
    }

    .stat-item p {
        font-size: 1.5rem;
    }

    /* VIDEO SECTION */
    .video-section {
        padding: 50px 10px;
    }

    .video-container {
        padding: 0;
    }

    .video-section h2 {
        font-size: 2rem;
    }

    /* FEATURES SECTION */
    .features-section {
        padding: 60px 10px;
    }

    .feature-card {
        padding: 30px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 1rem;
        font-weight: 700;
    }

    /* PRICING SECTION */
    .pricing-section {
        padding: 60px 10px;
    }

    .pricing-section h2 {
        font-size: 2rem;
    }

    .pricing-section p {
        font-size: 1.2rem;
    }

    /* FAQ SECTION */
    .faq-section {
        padding: 50px 10px;
    }

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

    .faq-subtitle {
        font-size: 1.1rem;
    }

    /* CONTACT SECTION */
    .contact-section {
        padding: 60px 10px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    /* FOOTER */
    .footer {
        padding: 60px 20px;
    }

    .footer-logo {
        min-width: 200px;
    }

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


/* Terms of Use Page Styles */
.terms-header {
    background: #372541;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.terms-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.terms-header p {
    font-size: 1rem;
    font-weight: 300;
}

.terms-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.terms-content h2 {
    font-size: 1.3rem;
    margin-top: 30px;
    color: #703e93;
}
.terms-content h3 {
    font-size: 1.1rem;
    margin-top: 30px;
    color: #703e93;
}

.terms-content p, .terms-content ul {
    margin-bottom: 15px;
}

.terms-content ul {
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 10px;
}


.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }
    .terms-content {
        font-size: 0.95rem;
    }
    .terms-content h2 {
        font-size: 1.3rem;
    }

    .hero-header .primary, .hero-header .secondary{
       display: none !important;
    }
}
