/* ----- Variables globales ----- */
:root {
    --primary-color: #00c4a7; /* Verde turquesa del logo */
    --secondary-color: #ffc107; /* Amarillo del logo */
    --accent-color: #ff5252; /* Rojo del logo */
    --dark-blue: #0d2035; /* Azul oscuro del logo */
    --light-blue: #55c7d9; /* Azul claro del logo */
    --text-color: #333;
    --light-bg: #f8f9fa;
}

/* ----- Reset básico ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* ----- Header & Navigation ----- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-blue);
}

/* ----- Menú Desplegable ----- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f0f9f8;
    color: var(--primary-color);
}

.dropdown-menu a::after,
.dropdown-trigger::after {
    display: none !important;
}

/* Indicador de menú desplegable */
.dropdown-trigger .dropdown-icon {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-trigger .dropdown-icon {
    transform: rotate(180deg);
}

/* ----- Main Content (Común) ----- */
.main-content {
    margin-top: 100px;
    padding: 40px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.page-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 5px;
}

.page-title p {
    color: #666;
    font-size: 1.1rem;
}

/* ----- Hero Section ----- */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.app-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    gap: 15px; /* Espacio entre los botones */
}

.app-badge {
    display: inline-block;
    padding: 12px 25px;
    background: var(--dark-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-badge:hover {
    background: white;
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.app-badge i {
    font-size: 24px;
}

.hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.hero-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-5deg);
}

/* ----- Sections ----- */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 5px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ----- Features Section ----- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    font-size: 40px;
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.feature-content p {
    color: #666;
    line-height: 1.7;
}

/* ----- How It Works Section ----- */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin: 20px 0;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.step-card p {
    color: #666;
}

/* ----- Testimonials Section ----- */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 400px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.7s ease-in-out;
    text-align: center;
    margin: 0 auto;
    right: 0;
    left: 0;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
}

.testimonial-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.testimonial-slide.next {
    opacity: 0;
    transform: translateX(100%);
    z-index: 1;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-position {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ----- CTA Section ----- */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ----- FAQ Section ----- */
.faqs {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    background: white;
    color: var(--dark-blue);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* ----- Instructions Container ----- */
.instructions-container {
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instruction-section {
    margin-bottom: 40px;
}

.instruction-section:last-child {
    margin-bottom: 0;
}

.instruction-section h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-blue);
}

.instruction-section h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    margin-top: 25px;
}

.instruction-section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.instruction-steps {
    margin-left: 20px;
    margin-bottom: 20px;
}

.instruction-steps li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.note {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.warning {
    background-color: #fff8e1;
    padding: 15px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.danger {
    background-color: #FFEBEE;
    padding: 15px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.image-container {
    margin: 20px 0;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ----- Navigation Menu in Instructions ----- */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.nav-item {
    flex: 1 0 250px;
    max-width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.nav-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.nav-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.nav-item p {
    font-size: 0.9rem;
    color: #666;
}

/* ----- Status Indicators ----- */
.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-green, .status-accepted {
    background-color: #4CAF50;
}

.status-grey, .status-pending {
    background-color: #999999;
}

.status-red, .status-rejected {
    background-color: #F44336;
}

/* ----- Balance Indicators ----- */
.balance-box {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px;
    margin: 0 5px;
    font-weight: bold;
}

.balance-positive {
    background-color: #E8F5E9;
    color: #388E3C;
    border: 1px solid #C8E6C9;
}

.balance-negative {
    background-color: #FFEBEE;
    color: #D32F2F;
    border: 1px solid #FFCDD2;
}

.balance-neutral {
    background-color: #ECEFF1;
    color: #607D8B;
    border: 1px solid #CFD8DC;
}

/* ----- Privacy and Terms Styles ----- */
.privacy-container, .terms-container {
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section, .terms-section {
    margin-bottom: 40px;
}

.privacy-section:last-child, .terms-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2, .terms-section h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-blue);
}

.privacy-section h3, .terms-section h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-section p, .terms-section p,
.privacy-section li, .terms-section li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.privacy-section ul, .privacy-section ol,
.terms-section ul, .terms-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.highlight-box, .important-box {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.important-box {
    background-color: #fff8e1;
    border-left: 4px solid var(--secondary-color);
}

.highlight-box {
    border-left: 4px solid var(--light-blue);
}

.contact-box {
    background-color: #f0f7fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid var(--light-blue);
}

.contact-box h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-email {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 5px;
}

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

.last-updated {
    font-style: italic;
    color: #666;
    text-align: right;
    margin-top: 30px;
}

/* ----- Visitor Counter ----- */
.visitor-counter {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin: 40px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-size: 1.2rem;
}

.visitor-counter i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.counter-number {
    background: white;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: 700;
}

/* ----- Video Section ----- */
.video-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ----- Button Styles ----- */
.button-example {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    margin: 5px;
}

.button-primary {
    background-color: var(--primary-color);
    color: white;
}

.button-danger {
    background-color: var(--accent-color);
    color: white;
}

.back-to-main {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-to-main:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
}

/* ----- Footer ----- */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-column p {
    color: #bbb;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
}

.developer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.developer-link:hover {
    color: var(--secondary-color);
}

/* ----- Responsive Styles ----- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features, .how-it-works {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Base layout fixes */
    body {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Navigation mobile styles */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 5px 0;
    }
    
    .logo-container {
        flex: 0 0 auto;
        width: auto;
        min-width: 140px;
        height: auto;
        margin-left: 0;
        padding-left: 0;
        display: flex;
        align-items: center;
    }
    
    .logo-container img {
        max-height: 85px;
        width: auto;
        object-fit: contain;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        flex: 0 0 auto;
        display: block;
        margin-right: 0;
        position: relative;
    }
    
    /* Dropdown menu mobile styles */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 0;
        background-color: #f5f5f5;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 10px 15px 10px 30px;
        font-size: 14px;
    }
    
    .dropdown {
        width: 100%;
        text-align: center;
    }
    
    /* Hero section mobile styles */
    .hero {
        flex-direction: column;
        height: auto;
        padding: 150px 0 100px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero .app-badges {
        order: 3;
    }
    
    .hero-image {
        order: 2;
        margin: 30px 0;
    }
    
    /* Content section mobile styles */
    .features, .how-it-works {
        grid-template-columns: 1fr;
    }
    
    .how-it-works {
        grid-template-columns: 1fr;
    }
    
    /* Section titles mobile styles */
    .page-title h1 {
        font-size: 2rem;
    }
    
    .instruction-section h2 {
        font-size: 1.6rem;
    }
    
    .instruction-section h3 {
        font-size: 1.3rem;
    }
    
    .instruction-section p,
    .instruction-steps li {
        font-size: 1rem;
    }
    
    /* Testimonials mobile styles */
    .testimonial-nav {
        margin-top: 0px;
        position: relative;
        bottom: 0px;
    }
    
    .testimonial-slide {
        padding: 30px 15px;
        width: 95%;
        height: auto;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    /* Footer mobile styles */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Navigation items mobile styles */
    .nav-item {
        flex: 1 0 100%;
    }
    
    /* App badges mobile styles */
    .app-badges {
        flex-direction: column;
    }
    
    /* Section styles */
    .section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Small screen adjustments */
    .container {
        padding: 0 10px;
    }
    
    .logo-container {
        min-width: 120px;
    }
    
    .logo-container img {
        max-height: 65px;
    }
    
    /* Navbar mobile styles */
    .navbar {
        padding: 5px 0;
        justify-content: space-between;
    }
    
    .mobile-menu-btn {
        margin-right: 0;
    }
    
    /* Hero section small screen */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }
    
    /* Testimonial mobile styles */
    .testimonial-slide {
        width: 100%;
        padding: 20px 10px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-nav {
        margin-top: 0;
        bottom: 0px;
    }
    
    .testimonial-position {
        font-size: 0.8rem;
    }
    
    /* Content sections small screen */
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .instruction-section h2, 
    .privacy-section h2, 
    .terms-section h2 {
        font-size: 1.4rem;
    }
    
    .instruction-section h3,
    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .instruction-section p,
    .instruction-steps li,
    .privacy-section p,
    .privacy-section li,
    .terms-section p,
    .terms-section li {
        font-size: 0.95rem;
    }
    
    .instruction-section,
    .privacy-section,
    .terms-section {
        margin-bottom: 30px;
    }
    
    .privacy-container,
    .terms-container {
        padding: 20px;
    }
}