body {
    background-color: darkblue;
    height: 1200px;
    padding: 0px;
    margin: 0px;
}

* { box-sizing: border-box; }

nav {
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

/* Scope nav styles so they don't affect content lists */
nav .nav-links {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 8px 12px 8px 0;
    flex-wrap: wrap;
}

nav .nav-links>li {
    list-style-type: none;
    border: 1px solid rgb(0, 200, 255);
    padding: 10px 16px;
    border-radius: 8px;
}

nav .nav-links>li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

nav .nav-links>li:hover {
    background-color: rgb(0, 200, 255);
    cursor: pointer;
    color: rgb(0, 0, 255);
}

/* Hamburger button */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
}

.header {
    background-image: url(imagecopy.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 120px;
    width: 100%;
}

.logo {
    float: left;
    font-size: 44px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-style: italic;
    padding: 24px;
}

.banner{
    background-image: url(IMG_6095.JPG);
    height: 500px;
    width: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 50px;
    border-radius: 100px;
    /* border-style: dashed; */
    /* border-color: rgb(255, 255, 255); */
    border: 5px solid #eeee;
}

.heading{
    font-size: 25px;
    color: white;
    padding: 30px;
    margin: 0;
    /* float: right; */
    /* margin-top: -540px;
    margin-right: 500px; */
}

/* New layout helpers for the index page */
.container {
    margin: 2% 10%;
}

.panel {
    border: 1px solid wheat;
    padding: 20px 30px;
    margin-bottom: 24px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.section-title {
    color: #fff;
    margin: 10px 0 6px;
    font-size: 28px;
    font-weight: 600;
}

.list {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    padding-left: 22px;
}

.list li {
    list-style: disc;
    margin-left: 20px;
    padding: 6px 0;
    border: none;
    float: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 32px;
        padding: 16px 12px;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-toggle {
        display: inline-block;
        margin: 8px 12px;
    }
    nav .nav-links {
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 8px 0 0 0;
        width: 100%;
    }
    nav .nav-links.open {
        display: block;
    }
    nav .nav-links>li {
        width: 100%;
        padding: 10px 12px;
    }

    .header {
        height: 80px;
        background-attachment: scroll;
    }

    .container {
        margin: 4% 6%;
    }

    .section-title {
        font-size: 22px;
    }

    .heading {
        font-size: 18px;
        padding: 16px;
    }

    .list {
        font-size: 18px;
        padding-left: 18px;
    }
}