
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

header {
    background-color: #c00;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

header img {
    height: 50px;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2 {
    color: #c00;
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
}

a {
    color: #c00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer styling */
footer {
    background-color: #f8f8f8;
    color: #333;
    text-align: center;
    padding: 20px 10px;
    border-top: 2px solid #c00;
    margin-top: 40px;
    font-size: 14px;
}

footer a {
    color: #c00;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin-left: 0;
        margin-top: 10px;
    }
}
