body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f7;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

.m-20 {
    margin-top: 20px;
}

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

.logo {
    width: 120px;
    height: auto;
    margin: 60px 0px 0px 0px;
}

h1 {
    font-size: 3.5em;
}

h1, h2 {
    font-family: 'Varela Round', sans-serif; /* Rounded font */
    font-weight: bold;
    color: #068280;
}

h3 {
    color: #6f6f6f;
    margin-bottom: 5px;
    font-size: 1.1em;
}

p {
    background-color: #eaecef;
    padding: 10px;
    border-left: 4px solid #2a2a72;
    display: inline-block;
    margin-top: 3px;
    text-align: left;
}

.app-store-link {
    display: inline-block;
    margin-top: 20px;
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.app-store-link:hover {
    background-color: #424874;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.8em;
}

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

.social-links a:hover {
    text-decoration: underline;
    color: #424874;
}

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

.legal-links a:hover {
    text-decoration: underline;
    color: #424874;
}

.special-link {
    color: #0077cc; /* Sets the color of the link */
    text-decoration: underline; /* Underlines the link */
    font-weight: bold; /* Makes the link text bold */
}

.special-link:hover {
    color: #005fa3; /* Changes color on hover */
    text-decoration: none; /* Removes underline on hover */
    background-color: #f0f0f0; /* Adds background color on hover */
}

@media screen and (max-width: 768px) {
    .logo {
        width: 80px; /* Smaller logo on mobile */
        height: auto;
        margin-top: 30px;
    }

    h1 {
        font-size: 2em; /* Smaller h1 text on mobile */
    }

    h2 {
        font-size: 1.5em; /* Smaller h2 text on mobile */
    }
}