body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 100vh;
    background: #00152B;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.desktop-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 124px;
    gap: 32px;
    background: #00152B;
    max-height: 100vh;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Navbar Styles */
/*
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1095px;
    height: 80px;
    background: #E6E8EC;
    border-radius: 100px;
    padding: 10px 25px;
    gap: 100px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    overflow: auto;
    flex: none;
    order: 0;
}

.navbar:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.35);
}
.header-logo {
    width: 200px;
    height: 50px;
    background: #FFDE3B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
} */

/* Options Styles */
.options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 20px;
    gap: 25px;
    width: 583px;
    height: 58px;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.options div:hover {
    color: white;
    transform: scale(1.1) translateY(-5px);
}

.option {
    padding: 20px;
}

/* Welcome and Explore Text */
.welcome, .explore {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    width: 60%;
}

.welcome {
    font-size: 50px;
    line-height: 47px;
}

.explore {
    font-size: 42px;
    line-height: 49px;
}

/* Applications Section */
.applications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px;
    gap: 24px;
    max-width: 1192px;
    order: 3;
}

.application {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 440px;
    height: 260px;
    background: #FFE45B;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    gap: 10px;
    cursor: pointer;
}

.application:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.35);
}

.title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 59px;
    text-align: center;
    color: white;
    width: 372px;
}

.view-more {
    padding: 10px 20px;
    background: white;
    color: black;
    border: 2px solid black;
    border-radius: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.view-more:hover {
    color: #FFE45B;
    background: #00152B;
    transform: scale(1.05);
}

/* Language switcher style */

.language-switcher {
    border-radius: 25px;
    padding: 10px;
    background-color:#003366;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.language-switcher ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-switcher li {
    margin-left: 10px;
}

.language-link {
    text-decoration: none;
    color: #E6E8EC;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-link:hover {
    background-color:#00152B;
    color: #FFDE3B;
}


/* Table of contents style */
.toc-title{
    color: #f4f4f9;
}
.toc-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
    gap: 15px;
    width: 800px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

ul.toc {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

ul.toc > li {
    margin-bottom: 15px;
}

ul.toc > li > a {
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    color: #003366;
    font-size: 18px;
    transition: color 0.3s ease;
}

ul.toc > li > a:hover {
    color: #FFDE3B;
}

ul.subchapter-list {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 10px;
}

ul.subchapter-list > li > a {
    text-decoration: none;
    padding: 8px;
    font-weight: normal;
    color: #003366;
    font-size: 16px;
    transition: color 0.3s ease;
}

ul.subchapter-list > li > a:hover {
    color: #FFDE3B;
}

ul.subsubchapter-list {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 5px;
}

ul.subsubchapter-list > li > a {
    text-decoration: none;
    font-style: italic;
    color: #003366;
    font-size: 14px;
    transition: color 0.3s ease;
}

ul.subsubchapter-list > li > a:hover {
    color: #FFDE3B;
}

.toc-container:hover{
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

/* contact style */

.contact-container {
    margin: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}
.contact-container .h1 {
    color: #333;
}
.contact-container p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}
.contact-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0077b5;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.contact-link:hover {
    background-color: #005582;
}

/* Media Queries */
@media (max-width: 768px) {
    .desktop-frame {
        padding: 32px;
        gap: 16px;
    }

    .navbar {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .header-logo {
        width: auto;
        height: auto;
        font-size: 20px;
    }

    .welcome, .explore {
        width: 100%;
        font-size: 24px;
    }

    .applications {
        gap: 16px;
        padding: 16px;
    }

    .application {
        width: 80%;
        height: auto;
        padding: 20px;
    }

    .toc-container {
        width: 100%;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .welcome {
        font-size: 18px;
    }

    .explore {
        font-size: 16px;
    }

    .title {
        font-size: 20px;
    }

    .view-more {
        font-size: 14px;
    }

    .toc-container {
        padding: 5px 10px;
    }

    .toc-title {
        font-size: 18px;
    }

    ul.toc > li > a {
        font-size: 16px;
    }

    ul.subchapter-list > li > a,
    ul.subsubchapter-list > li > a {
        font-size: 14px;
    }
}



@media (min-width: 768px) {
    #bottom-switcher{
        display: none;
    }
}