body {
    background-image: linear-gradient(to bottom right,  #009999, #ffaa22,#ffb9ff);
    padding: 10px;
}

nav {
    padding-top: 50px;
    position: relative;
}

.section1 {
    clear: both;
    padding: 20px;
    margin: 0;
    background-color: rgb(255, 255, 255, 0.4);
}

.section2 {
    clear: both;
    padding: 20px;
    margin: 0;
    background-color: rgb(166, 166, 166, 0.4);
}

.header1 {
    padding: 10px 20px;
    background-color: #009999;
    border-bottom: white solid 3px;
    text-align: center;
    color: white;
}

h1 {
    font-size: 20px;
    font-weight: bold;
    font-variant: small-caps;
    color: white;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0 0 0;
    padding: 15px;
    background-color: #009999;
    color: white;
    border-bottom: white solid 2px;
}

h3 {
    font-size: 16px;
    font-weight: bold;
    color: black;
    border-bottom: dotted gray 3px;
    font-family: sans-serif;
}

p, li {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    color: black;
    font-weight: 400;
    font-family: sans-serif;
    line-height: 1.4em;
}

.callout {
    font-size: 2em;
    font-family: serif;
    text-align: center;
    font-weight: bold;
    padding: 20px;
    text-decoration: wavy;
    border-left: solid 7px #009999;
    width: 70%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

h2.callout {
    font-weight: bold;
    background-color: unset;
    font-size: 1.6em;
    font-family: serif;
    text-align: center;
    padding: 20px;
    text-decoration: wavy;
    color: black;
    border: none;
    margin: 0;
    width: 100%;
}

a {
    text-decoration: underline;
    color: #009999;
    font-weight: bold;
}

button {
    padding: 10px;
    margin: 0 15px;
    font-size: 1.1em;
    border-radius: 5px;
}

.accordion {
    background-color: #eee;
    color: #444;
    Margin: 0;
    cursor: pointer;
    padding: 8px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: #ccc;
}

.panel {
    padding: 0;
    width: 100%;
    margin: 0;
    background-color: white;
    color: #009999;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:before {
    content: '\02795';

    /* Unicode character for "plus" sign (+) */
    font-size: 18px;
    color: #777;
    float: left;
    margin-right: 5px;
}

.active:before {
    content: "\2796";

    /* Unicode character for "minus" sign (-) */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #009999;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 999;
    margin-top: 120px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #009999;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.desktop-nav a:hover {
    background-color: #007777;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
}

/* Desktop styles */
@media screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .mobile-nav {
        display: none !important;
    }
}