body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F5F5F5; /* Light gray background */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header, footer {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
}

main {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Space between cards */
}

header {
    text-align: center;
}

.logo-img {
    max-width: 250px;
    height: auto;
}

section {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease-in-out;
}

section:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #000000;
    border-bottom: 2px solid #D21C32;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

p {
    font-weight: 400;
    color: #1A1A1A;
    text-align: left; /* Improved readability */
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: auto;
    color: #1A1A1A;
}

.footer-symbol {
    max-width: 40px;
    height: auto;
    margin-bottom: 10px;
}

.footer {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
    header, main, footer {
        padding: 15px;
    }

    main {
        gap: 1rem;
    }

    .logo-img {
        max-width: 200px;
    }

    h2 {
        font-size: 1.5em;
    }

    section {
        padding: 1rem;
    }
}
