/* styles.css */
body {
    margin: 0;
    padding: 0 50px;
    font-family: sans-serif;
    background-color: #f8f9fa;
    color: #333;
    font-size: 18px; /* Increased base font size */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px; /* Increased padding */
}

.logo {
    height: 60px; /* Increased logo size */
    width: auto;
}

.contact {
    display: flex;
    align-items: center;
    gap: 30px; /* Increased gap */
    color: #00aaff;
    font-size: 18px; /* Increased font size */
}

.contact a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact i {
    margin-right: 8px; /* Slightly increased */
    font-size: 20px; /* Increased icon size */
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 150px; /* Increased padding */
    min-height: 550px; /* Increased min-height */
}

.hero-text {
    font-size: 80px; /* Increased font size */
    font-weight: bold;
    line-height: 1.1;
    max-width: 50%;
    color: #334455;
}

.desktop-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Increased gap */
}

.qr-code {
    background-color: white;
    padding: 30px; /* Increased padding */
    border-radius: 30px; /* Increased radius */
    box-shadow: 0 6px 12px rgba(0,0,0,0.1); /* Slightly stronger shadow */
}

.qr-code img {
    width: 200px; /* Increased QR size */
    height: 200px;
}

.platforms {
    color: #334455;
    font-size: 18px; /* Increased font size */
    margin: 0;
}

.platforms i {
    margin-right: 8px;
    margin-left: 15px; /* Adjusted spacing */
    font-size: 20px; /* Increased icon size */
}

.platforms i:first-child {
    margin-left: 0;
}

.mobile-buttons {
    display: none;
    flex-direction: row;
    justify-content: center;
    gap: 30px; /* Increased gap */
    margin-top: 60px; /* Increased margin */
}

.app-button {
    display: block;
    text-decoration: none;
}

.app-button img {
    width: 180px; /* Increased badge size */
    height: auto;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px; /* Increased padding */
    font-size: 14px; /* Increased font size */
    color: #667788;
}

.footer-links {
    display: flex;
    gap: 30px; /* Increased gap */
}

.footer-links a {
    color: #667788;
    text-decoration: none;
}

@media (max-width: 768px) {
    body {
        font-size: 16px; /* Slightly larger base for mobile, but not as big as desktop */
    }

    header {
        padding: 20px;
    }

    .logo {
        height: 40px; /* Keep original for mobile */
    }

    .contact {
        gap: 20px;
        font-size: 14px;
    }

    .contact i {
        font-size: 16px;
    }

    .contact .contact-text {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
        min-height: auto;
    }

    .hero-text {
        font-size: 40px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .desktop-qr {
        display: none;
    }

    .mobile-buttons {
        display: flex;
    }

    .app-button img {
        width: 135px; /* Keep original for mobile */
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
        font-size: 12px;
    }

    .footer-links {
        order: -1;
    }
}