@font-face {
    font-family: 'AbeeZee';
    src: url('../fonts/ABeeZee.ttf') format('truetype'),
}

* {
    font-family: 'AbeeZee';
}

body {
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff !important;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 165px;

}

h1 {
    color: #0A1627;
    text-align: left;
    margin-bottom: 20px;
    text-shadow: 0 0 #0A1627;

}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 0 0 #0A1627;

}

.last-modified {
    font-style: italic;
    font-size: 0.9em;
    text-align: right;
    margin-top: 20px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    color: #C1C1C1;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    padding-left: 10%;
}

.logo img {
    height: 100px;

}

.logo {
    transition: all 0.8s ease;
}

.logo.scrolled {
    background-color: ghostwhite;
    border-radius: 20px;
    padding: 20px;
}

nav {
    margin-left: 25px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #0A1627;
    padding: 10px;
    text-align: left;
    border-radius: 20px 0px 0px 20px;
}

nav ul li {
    display: inline-block;
    padding: 4px;
}



nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-right: 25px;
    margin-left: 25px;
}

nav ul li a.active {
    border-bottom: 1px solid #F8973D;
}

nav ul li a:hover {
    color: #F8973D;
}

nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

nav ul li a.active {
    color: #F8973D;
}


.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
    color: #F8973D;
}

.footer-container::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: #fff;
    margin: 0 20px;
}



@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 0;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-container::after {
        content: none;
    }
}

.hamburger-menu {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

.hamburger-menu span:nth-child(2) {
    margin: 0 0 0 auto;
}

.hamburger-menu span:nth-child(3) {
    width: 60%;
}

.menu-icon {
    display: none;
}


.close-icon {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: white;
    font-size: 24px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 100px;
    font-size: 30px;
}



a {
    color: #0A1627;
    cursor: pointer;
    text-decoration: none;
}

.uninstall-instructions {
    list-style-type: decimal;
    margin-left: 20px;
    padding-left: 20px;
}

.uninstall-instructions li {
    margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
    .menu-icon {
        display: block !important;
    }

    body {
        padding-top: 100px;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #0A1627;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        z-index: 1000;
    }

    .menu-icon {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
    }

    nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #0A1627;
    }

    nav ul {
        padding: 0;
        margin: 0;
        list-style: block;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        color: white;
        text-decoration: block;
        font-size: 18px;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    nav.active {
        display: block !important;
    }

    .hero-section h1 {
        letter-spacing: -0.04em;
        direction: ltr;
        fill: rgb(0, 0, 0);
        font-size: 40px;
        font-weight: normal;
        font-style: normal;
        text-anchor: middle;
        text-decoration: none;
        text-transform: uppercase;
        overflow: visible;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        letter-spacing: 0.5px;
    }

    .container {
        margin: 0 auto;
        box-sizing: border-box;
        padding-top: 0px;
        word-wrap: break-word;
        padding-top: 20px;
    }

    .features-section {
        display: flex;
        flex-direction: column;
    }

    .about-description-content {
        letter-spacing: -0.04em;
        direction: ltr;
        fill: rgb(0, 0, 0);
        font-size: 16px;
        font-weight: normal;
        font-style: normal;
        text-anchor: middle;
        text-decoration: none;
        overflow: visible;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        letter-spacing: 0.5px;
        color: #fff;
        font-weight: 100 !important;
        padding-left: 5%;
        padding-right: 5%;
        line-height: 1.5;
    }

    .hero-section {
        background-image: url(../images/hero.jpg);
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        width: 100%;
        height: 50vh;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-shadow: 0 0 black;
    }

    .feature-content {
        font-size: 15px;
        line-height: 158%;
    }

    nav {
        margin-left: 0px;
    }

    .about-container {
        text-shadow: 0 0 black;
        width: 100%;
        background-image: url(../images/about.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        padding-top: 25px;
        padding-bottom: 25px;

    }

    .hamburger-menu {
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        margin-right: 20px;
    }

    footer {
        font-size: 16px;

    }

    footer a {
        font-size: 16px;

    }

    .hamburger-menu.active {
        display: block !important;
    }

    .close-icon {
        display: block;
    }



}