@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@600&display=swap');

footer {
    background: #1a1a2e; /* Dark background for contrast */
    color: #f8f9fa;
    text-align: center;
    padding: 20px 10px;
    font-size: 1em;
    position: relative; /* Ensure it flows naturally with the document */
    z-index: 1; /* Ensure it appears above background elements */
}

body > footer {
    margin-top: auto; /* Push the footer to the bottom of the page */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(20, 20, 50, 0.9);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 10;
}

header h1 {
    margin: 0;
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

header h1 a {
    text-decoration: none;
    color: inherit;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffc107;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    font-size: 1em;
}

/* CTA Button Styling */
.nav-menu .cta-button {
    background: #ffc107;
    color: #343a40;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu .cta-button:hover {
    background: #ffdd59;
    color: #212529;
}

/* Hide menu toggle button on larger screens */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #343a40;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }

    .nav-menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #white, #whitesmoke);
    color: #white;
    text-align: left;
    padding: 0;
    overflow-x: hidden;
    color: #333;
    padding-top: 0px;