
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #040D12, #040D12);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px 0;
    background: linear-gradient(to bottom, #040D12, #040D12);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

/* Terms Content */
.terms-content {
    padding: 60px 0;
}

.terms-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: justify;

}

.terms-content h2 {
    margin-top: 40px;
    font-weight: 600;
    color: #ffffff;
}

.terms-content h5 {
    margin-top: 25px;
    font-weight: 600;
    color: #183D3D;
}
 
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
 
@media (max-width: 768px) {

    .hero-section {
        padding: 70px 0 40px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 40px 20px;
    }

    .terms-content p {
        font-size: 0.95rem;
    }
}