body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/background1.png);
    background-size: cover;
    color: #fff !important;
}

.logo {
    width: 100px;
    /* Default size for mobile */
    height: auto;
}

/* For tablets */
@media (min-width: 768px) {
    .logo {
        width: 200px;
    }
}

/* For laptops/desktops */
@media (min-width: 1024px) {
    .logo {
        width: 400px;
    }
}


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

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
}

.hero-inner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.title {
    font-size: 3em;
}

.subtitle {
    font-size: 1.5em;
}

.hero-content {
    width: 50%;
}

.hero-images {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshots {
    display: flex;
    justify-content: center;
}

.screenshots img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    object-fit: cover;
}

.appstore-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.appstore-buttons a {
    margin: 0 10px;
}

.appstore-buttons img {
    width: 150px;
    height: auto;
    margin: 10px;
}

.section {
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    clear: both;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-contact {
    text-align: left;
}

.footer-divider {
    width: 1px;
    height: 80%;
    background-color: #fff;
    margin: 0 20px;
}

.policy-section {
    color: #ffffff;
}


/* Media Queries */
@media screen and (max-width: 768px) {

    .hero-inner {
        flex-direction: column;
    }

    .hero-content,
    .hero-images {
        width: 100%;
        text-align: center;
    }

    .screenshots img {
        max-width: 100%;
    }

    .title {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }

    .appstore-buttons a {
        margin: 5px;
    }

    .appstore-buttons img {
        width: 120px;
    }

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

    .screenshots img {
        margin-bottom: 20px;
    }


}