body {
    background-color: #ffffff;
    margin-left: 15%;
    margin-right: 15%;
}

.navBar {
    background-color: #ffb375;
    color: #000000;
    padding: 15px 25px 15px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 30px 0 30px 0;
    border: solid 2px black;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 20px 20px 25px rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    flex-direction: row;
}

.navLink {
    margin-left: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #000000;
    padding: 8px 12px 8px 12px;
    background-color: #ffbf8b;
    border-radius: 12px;
    border: solid 2px transparent; 
}

.navLink:hover {
    border: solid 2px black;
    background-color: rgba(230, 160, 104, 0.5);
}

.logo {
    margin-left: 35px;
    margin-top: 4px;
    margin-right: auto;
}

.heroSection {
    text-align: center;
    background-color: rgb(255, 179, 117, 0.5);
    padding: 64px 72px 72px 72px;
    margin-top: 35px;
    border-radius: 35px;
    border: solid 2px black;
}

h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 72px;
    margin-bottom: -8px;
}

h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 32px;
    margin-bottom: -4px;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.subline {
    font-weight: 200;
    margin-bottom: 54px;
}

.button {
    margin-top: 12px;
    padding: 10px 40px 10px 40px;
    font-size: large;
    font-weight: 600;
    background-color: #ffb375;
    border-radius: 12px;
    border: solid 2px black;
}

.button:hover {
    background-color: rgb(255, 179, 117, 0.5);
}

.CTAbutton {
    display: inline-block;
    margin-top: 8px;
    padding: 15px 45px;
    font-size: large;
    font-weight: 600;
    color: black;
    text-decoration: none;
    background: linear-gradient(to bottom, #ffbf8b, #ffb375);
    border-radius: 12px;
    border: solid 2px black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.CTAbutton:hover {
    background: linear-gradient(to bottom, #ffca9a, #ffb884);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.featuresSection {
    text-align: center;
    background-color: rgb(255, 179, 117, 0.25);
    padding: 35px;
    margin-top: 35px;
    border-radius: 35px 0 35px 0;
    border: solid 2px black;
}

.quoteUI {
    background-color: rgb(255, 179, 117, 0.5);
    margin: 32px 128px 24px 128px;
    padding: 24px 24px 12px 24px;
    border-radius: 35px;
    border: solid 2px black;
    font-style: italic;
}

.featureCards {
    display: flex;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.card {
    flex: 1;
    background-color: #ffb375;
    border-radius: 24px;
    padding: 12px;
    border: solid 2px black;
}

.card:hover {
    background-color: rgb(255, 179, 117, 0.5);
    transform: translateY(-8px);
    transition-duration: 100ms;
}


.statusSection {
    text-align: center;
    background-color: rgb(255, 179, 117, 0.25);
    padding: 35px;
    margin-top: 35px;
    border-radius: 0 35px 0 35px;
    border: solid 2px black;
}

.statusContainer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.statusIndicator {
    display: flex;
    align-items: center;
    background-color: #ffb375;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid black;
}

.statusDot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    border: 2px solid black;
}

.green {
    background-color: #8cff8c;
}

.orange {
    background-color: #ffc88c;
}

.red {
    background-color: #ff8c8c;
}

footer {
    text-align: center;
    background-color: #ffb375;
    padding: 20px;
    margin-top: 35px;
    border-radius: 30px 30px 0 0;
    border: solid 2px black;
    font-family: Arial, Helvetica, sans-serif;
}


.social-sharing {
    text-align: center;
    padding: 20px;
}

.social-icon {
    margin: 0 10px;
    font-size: 24px;
    color: #000;
    text-decoration: none;
}

.social-icon:hover {
    color: #ff8c00;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.navBar.expanded .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navBar.expanded .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.navBar.expanded .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media screen and (max-width: 768px) {
    body {
        margin-left: 5%;
        margin-right: 5%;
    }

    .navBar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 20px 0 20px 0;
        padding: 15px;
        flex-wrap: wrap;
    }

    .logo {
        margin: 0;
    }
    
    .navLink {
        margin: 5px 0;
        display: block;
        text-align: center;
        width: 100%;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: center;
        margin-top: 15px;
    }

    .navBar.expanded .nav-links {
        display: flex;
    }

    .heroSection {
        padding: 32px 24px;
        margin-top: 20px;
        border-radius: 25px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .quoteUI {
        margin: 24px 16px;
        padding: 16px;
        border-radius: 25px;
    }

    .featureCards, .statusContainer {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .card {
        margin-bottom: 1rem;
    }

    .statusIndicator {
        justify-content: center;
        padding: 10px 15px;
    }

    footer {
        border-radius: 20px 20px 0 0;
    }
}
