/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    background-color: #333;
    padding: 1rem 2rem;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
}

.logo-img {
    max-height: 60px; /* Adjust this value to fit your design */
    width: auto; /* Keep the aspect ratio */
    display: block; /* Ensure it takes up space */
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #f8b400;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content h3 {
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        align-items: center;
    }

    .btn-primary {
        margin-top: 1rem; /* Adjust space for better visual alignment */
    }

    .logo {
        margin-bottom: 1rem;
    }
}