body {
    margin: 0;
    color: white;

}
/* Basic Styles */
/* Navbar container */
.navbar-container {
    background-color: #333;
}

.navbar {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.25rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile toggle and brand */
.navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hamburger icon for mobile */
.hamburger-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
}

/* Hidden checkbox for toggle state */
.navbar-toggle {
    display: none;
}

/* Menu links */
.navbar-menu {
    transition: all 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    font-weight: 500;
}

.nav-link a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.nav-link a:hover {
    color: #3b82f6;
}

/* Mobile styles */
@media (max-width: 500px) {
    .navbar-menu {
        max-height: 0;
        overflow: hidden;
        width: 100%;
        padding: 0;
    }

    .navbar-toggle:checked ~ .navbar-menu {
        max-height: 500px; /* Adjust as needed for content */
        padding: 1rem 0;
    }

    .navbar-toggle-label {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .nav-link a {
        padding: 0.5rem 1rem;
    }
}

/* Main content styles */
main {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
    flex-grow: 1;
}

.main-heading {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.main-paragraph {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
