/* Global Styles */
body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F4F4F4;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #2E4053;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

header img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* Navigation Menu */
nav {
    background-color: #34495E;
    border-bottom: 2px solid black;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1ABC9C;
}

/* Call-to-Action Banner */
div[style*="background-color: #1ABC9C;"] {
    text-align: center;
    padding: 15px;
}

div[style*="background-color: #1ABC9C;"] a {
    text-decoration: none;
    font-weight: bold;
    background-color: white;
    color: #1ABC9C;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

div[style*="background-color: #1ABC9C;"] a:hover {
    background-color: #1ABC9C;
    color: white;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

main h2 {
    text-align: center;
    color: #2E4053;
    margin-bottom: 20px;
}

main ul {
    list-style-type: square;
    margin: 10px 0 20px 20px;
    padding: 0;
}

main ul li {
    margin-bottom: 10px;
}

/* Image Styles */
main img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
footer {
    background-color: #2E4053;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #1ABC9C;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    main {
        padding: 15px;
    }

    footer {
        font-size: 14px;
        padding: 15px;
    }
}