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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1e3a8a;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #1e3a8a;
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
}

.language-menu {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    border: 1px solid #1e3a8a;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.language-menu[hidden] {
    display: none;
}

.language-option {
    border: 0;
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 16px;
    font-size: 14px;
    text-align: right;
    cursor: pointer;
}

.language-option:hover,
.language-option.is-active {
    background-color: #1e3a8a;
    color: #ffffff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 30px 15px;
    gap: 75px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer {
    text-align: center;
    padding: 12px 15px 20px;
    color: #1e3a8a;
    font-size: 14px;
    line-height: 1.4;
}

/* Left Section - Phone Mockup */
.phone-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.phone-mockup {
    width: 100%;
        max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(30, 58, 138, 0.15));
}

/* Right Section - Content */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 300px;
}

/* Logo Container */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    width: 280px;
    height: auto;
    object-fit: contain;
}



/* Tagline */
.tagline {
    font-family: 'Albert Sans', sans-serif;
        font-size: 26px;
    font-weight: 600;
    color: #1e3a8a;
        margin-bottom: 108px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* Download Buttons */
.download-buttons {
    display: flex;
        gap: 15px;
    justify-content: center;
        margin-bottom: 45px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 10px 20px rgba(30, 58, 138, 0.2));
}

.download-btn img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Social Icons */
.social-icons {
    display: flex;
        gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
        margin-top: 45px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
        width: 50px;
        height: 50px;
    border-radius: 50%;
    text-decoration: none;
        font-size: 24px;
    transition: all 0.5s ease;
}

.social-icon.twitter {
    background-color: #000000;
    color: #ffffff;
}

.social-icon.twitter:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon.snapchat {
    background-color: #FFFC00;
    color: #000000;
}

.social-icon.snapchat:hover {
    background-color: #ffffff;
    color: #FFFC00;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 252, 0, 0.3);
}

.social-icon.tiktok {
    background-color: #000000;
    color: #ffffff;
}

.social-icon.tiktok:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon.instagram:hover {
    background-color: #ffffff;
    color: #e1306c;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.social-icon.whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.social-icon.whatsapp:hover {
    background-color: #ffffff;
    color: #25D366;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
    }

    .phone-mockup {
            max-width: 280px;
    }

    .tagline {
            font-size: 22px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
        gap: 30px;
    }

    .phone-mockup {
        max-width: 220px;
    }

    .logo {
        width: 200px;
    }

    .tagline {
        font-size: 20px;
    }

    .download-btn img {
        height: 40px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 12px;
        right: 12px;
    }

    .language-toggle {
        font-size: 13px;
        padding: 6px 10px;
    }

    .container {
        padding: 15px 10px;
        gap: 20px;
    }

    .phone-mockup {
        max-width: 180px;
    }

    .logo {
        width: 160px;
        margin-bottom: 20px;
    }

    .tagline {
        font-size: 18px;
        margin-bottom: 72px;
    }

    .download-buttons {
        margin-bottom: 30px;
    }

    .download-btn img {
        height: 35px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Policy Buttons */
.policy-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 15;
}

.policy-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    white-space: nowrap;
    text-decoration: none;
    display: block;
    text-align: center;
}

.policy-btn:hover {
    background-color: #15274d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}

.policy-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .policy-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .policy-btn {
        font-size: 12px;
        padding: 8px 14px;
    }
}
