html, body {
    height: 100%;
    margin: 0;
    font-family: 'Nunito', Arial, sans-serif;
    background-color: #F9F6F1;
    overflow-x: hidden; /* Hide horizontal overflow */
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

.logo {
    position: relative;
    background-color: #322F2F;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

    .logo img {
        width: 100%;
        max-width: 750px;
        height: auto;
    }

.mail-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #322F2F;
    padding: 10px;
    border-radius: 50%;
}

    .mail-icon img {
        width: 50px;
    }

@media (max-width: 768px) {
    .mail-icon {
        position: static;
        margin-top: 10px;
    }
}

.content {
    width: calc(100% - 20px); /* Account for padding */
    max-width: 100%; /* Prevent overflow beyond viewport */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.content-section h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0033A0;
    -webkit-text-stroke: 0.5px #CE1126;
    text-align: center;
}

.content-box {
    width: 100%;
    max-width: 900px;
    margin: 10px auto;
    padding: 30px;
    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #007A3D;
    border-radius: 8px;
    box-sizing: border-box;
}

.left-align, .center-align {
    width: 100%;
}

    .left-align p, .center-align p {
        margin: 0;
    }

    .left-align p {
        text-align: left;
    }

    .center-align p {
        text-align: center;
    }

.footer {
    background-color: #322F2F;
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #F9F6F1;
}

    .footer a {
        color: #ADD8E6;
        text-decoration: none;
    }

        .footer a:hover {
            color: #CE1126;
            text-decoration: underline;
        }

.social-icons {
    margin-top: 20px;
}

    .social-icons a {
        text-decoration: none;
        color: #F9F6F1;
    }

        .social-icons a:hover {
            color: #CE1126;
        }

.content-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .content-section h2 {
        font-size: 1.5em;
    }

    .content-box {
        padding: 20px;
    }

    .footer p {
        font-size: 0.9em;
    }
}
