body {
    font-family: "Times New Roman", "Georgia", serif;
    background: #f7f9fb;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    line-height: 1.8;
}

.terms-container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 60px 70px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: relative;
}

/* Optional watermark logo faint in background */
.terms-container::before {
    content: "EduSewa";
    position: absolute;
    font-size: 100px;
    color: rgba(0,0,0,0.05);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    pointer-events: none;
}

.terms-container h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 35px;
    color: #1a5276;
    text-transform: uppercase;
    border-bottom: 2px solid #1a5276;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

.terms-container ol {
    counter-reset: section;
    list-style: none;
    padding-left: 0;
}

.terms-container li {
    counter-increment: section;
    margin: 20px 0;
    font-size: 16px;
}

.terms-container li::before {
    content: counter(section) ". ";
    font-weight: bold;
    color: #1a5276;
    margin-right: 6px;
}

.terms-container h2 {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 25px;
    color: #154360;
}

.terms-container p {
    font-size: 16px;
    margin: 8px 0 15px 20px;
    text-align: justify;
    color: #333;
}

.back-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background: #1a5276;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #154360;
}
