/* styles.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container-fluid {
    background: linear-gradient(135deg, #0a72d1, #01b6e1);
}

header h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

header h2 {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.download-app h3, .contact-info h3 {
    margin-bottom: 1em;
}

.contact-details p {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.contact-details i {
    margin-right: 10px;
}

address {
    font-style: normal;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    header h2 {
        font-size: 1.2em;
    }

    .store-links img {
        max-width: 100px;
    }

    .contact-details p {
        font-size: 1em;
    }
}
