:root {
    --main-bg: #fff200;
    --main-text: #222;
    --nav-hover: #ffe600;
    --nav-active: #fff799;
    --box-bg: #fffbe0;
    --shadow: 0 2px 8px rgba(0,0,0,0.07);
    --navbar-bg: #fff;

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: rgb(255 242 0 / 1);
    color: var(--main-text);
}

.page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

.page-header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff807!important;
    position:fixed;
}

.page-header .page-logo img {
    height: 70px;
}

.page-hemburger img {
    display: none;
    width: 0px;
    cursor: pointer;
}

.page-menu-container {
    display: flex;
}

.page-menu-container ul {
    display: flex;
    margin: 0px 20px 0px 20px;
}

.page-menu-container ul li {
    list-style: none;
    width: 190px;
    text-align: center;
    cursor: pointer;
}

.page-menu-container ul li:hover {
    font-weight: 600;
}

.page-menu-item span {
    font-size: 18px;
}

.page-content {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-content-image {
    position: relative;
}

.page-content-image img {
    width: 100%;
}

.app-clickable-button {
    position: absolute;
    top: 41%;
    left: 58%;
    width: 37%;
    height: 18%;
    cursor: pointer;
}

.otod-app-button {
    position: absolute;
    left: 0;
    top: 85%;
    width: 100%;
    justify-content: center;
    display: flex;
}

.otod-app-button img {
    width: 200px;
    border-radius: 20px;
    cursor: pointer;
}

.page-topic {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-topic span {
    font-size: 20px;
    font-weight: 600;
}

.page-q-container {
    width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    background-color: white;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.page-question {
    font-weight: 600;
    padding: 10px;
}

.page-answer {
    padding: 10px;
}

.page-answer .indent {
    text-indent: -1.5em;
    padding-left: 2em;
    line-height: 1.6;
}

.page-answer .p-indent {
    text-indent: 2em;
    line-height: 1.6;
    margin-bottom: 6px;
}

.page-answer .p-indent-l2 {
    text-indent: 3em;
    margin-bottom: 6px;
}

.page-answer .p-indent-l3 {
    text-indent: 4em;
    margin-bottom: 6px;
}

.page-answer ul {
    padding-left: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-answer li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.page-sidebar {
    width: 70%;
    height: calc(100vh - 80px);
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 80px;
    left: 0;
    background-color: white;
    transition: width 0.5s ease, height 0.5s ease-in-out;
    backdrop-filter: blur(25px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
    z-index: 999;
}

.sidebar-item {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    cursor: pointer;
}

.sidebar-item:hover {
    background-color: var(--nav-hover);
    color: var(--main-text);
}

@media (max-width: 580px) {
    .page-hemburger img {
        display: flex;
        width: 50px;
        justify-content: center;
        align-items: center;
    }

    .page-menu-group {
        display: none;
    }

    .page-header .page-logo img {
        height: 60px;
    }

    .page-q-container {
        width: 95%;
    }

    .otod-app-button img {
        width: 90px;
    }
}

@media (max-width: 750px) {

    .page-q-container {
        width: 95%;
    }
}
