/* Import Google Font */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Baloo 2", sans-serif;
    background-color: #f4f4f4;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0;
}

body.home,
body.contact {
    justify-content: center;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Add more space between the container and window edges */

.container {
    min-width: 360px;
    max-width: 900px;
    padding: 40px;
    margin: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 900px;
        padding: 20px;
        margin: 10px;
        background-color: white;
        border-radius: 0;
    }
}

.logo {
    margin-bottom: 20px;
    text-align: center;
}

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

@media screen and (max-width: 767px) {
    .logo-img {
        max-width: 200px;
    }
}

.header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.content {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.content h2 {
    font-size: 1.375rem;
    margin-top: 30px;
    color: #b81816;
    font-weight: 500;
}

.content p, .content ul {
    margin-top: 15px;
}


/* Add margin-left for the unordered list */

.content ul {
    margin-left: 40px;
}

.content a {
    color: #b81816;
    text-decoration: none;
}

.content a:hover {
    color: #961310;
}

.description {
    font-size: 1.125rem;
    line-height: 1.5;
    max-width: 410px;
    margin: 0 auto 2.25rem;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.25rem;
}

.icons img {
    max-width: 80px;
    height: auto;
}

.footer {
    margin-top: 20px;
}

.footer a {
    text-decoration: none;
    margin: 0 15px;
    color: #b81816;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #961310;
    /* Darker color on hover */
}

.footer a:active {
    color: #730f0d;
    /* Even darker color on active */
}

@media screen and (max-width: 767px) {
    .footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}