#terms-header{
    background-image: url('../assets/images/banner.png');
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
}

#terms-header h2,
#terms-header p{
    color: #fff;
}

#terms-content{
    display: flex;
    justify-content: center;
}

#terms-content .terms-container{
    max-width: 1000px;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

#terms-content h2{
    font-size: 36px;
    margin-bottom: 20px;
    color: #088178;
}

#terms-content h3{
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #222;
}

#terms-content p{
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 1024px){
    #terms-content .terms-container{
        padding: 20px;
    }

    #terms-content h2{
        font-size: 28px;
    }

    #terms-content h3{
        font-size: 20px;
    }
}

/* ===========================
   DARK MODE
=========================== */
body.dark-theme #terms-content {
    background-color: #121212;
}

body.dark-theme #terms-content .terms-container {
    background: #1e1e1e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}

body.dark-theme #terms-content h2 {
    color: #088178;
}

body.dark-theme #terms-content h3 {
    color: #ffffff;
}

body.dark-theme #terms-content p {
    color: #d1d1d1;
}

/* ===========================
   LIGHT MODE (explicit)
=========================== */
body.light-theme #terms-content .terms-container {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

body.light-theme #terms-content h2 {
    color: #088178;
}

body.light-theme #terms-content h3 {
    color: #222;
}

body.light-theme #terms-content p {
    color: #555;
}