body {
    background: linear-gradient(to bottom, #0288D1, #003456);
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 1024px;
    width: 100%;
}

header, main, footer {
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    max-width: 558px;
    margin: 10px auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons img {
    width: 50px;
}

.main-logo {
    width: 100%;
    max-width: 774px;
    margin: 20px auto;
}

iframe {
    width: 100%;
    max-width: 640px;
    height: auto;
    aspect-ratio: 16 / 9; /* Ensures the iframe maintains 16:9 ratio */
}

.store-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.store-links img {
    width: 200px;
    height: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-icon {
    height: 80px;
}

.contact-letter {
    width: 58px;
    height: 51px;
}

.video-policy {
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: white;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .logo,
    .main-logo {
        max-width: 90%;
    }

    .social-icons {
        flex-direction: row;
        gap: 5px;
    }

    .social-icons img {
        width: 40px;
    }

    .store-links {
        flex-direction: row;
        gap: 5px;
    }

    .store-links img {
        max-width: 150px;
    }

    .contact-info {
        flex-direction: row;
        gap: 10px;
    }

    .contact-icon {
        height: 70px;
    }

    .contact-letter {
        width: 40px;
        height: 40px;
    }
}
