body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.top-bar {
    background: #bfecf9;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 200px;
    width: 280px;
}
header nav {
    background: #ff0000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}
header nav ul li {
    margin: 0;
}
header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}
header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}
.footer {
    background: #689ebb;
    color: #333;
    padding: 20px;
    text-align: center;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
.footer .footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}
.footer h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.footer p {
    margin: 0.5rem 0;
    line-height: 1.5;
}
.footer .social-media a {
    color: #1400b0;
    margin: 0 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.footer .social-media a:hover {
    color: #000;
}
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }
    .footer .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer .footer-column {
        margin: 1rem 0;
        text-align: center;
    }
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    header nav ul li {
        margin: 5px 0;
    }
}