:root {
    --brand-green: #198754;
    --brand-black: #0F0F0F;
    --brand-light: #f8f9fa;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: white;
    color: var(--brand-black);
    line-height: 1.7;
}

/* Navbar Styling */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.brand-accent {
    color: var(--brand-green);
    font-weight: 800;
}

/* Hero Section Styling */
.hero-terms {
    padding: 100px 0;
    background-color: var(--brand-light);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    text-align: center;
}

/* Content Card Styling */
.content-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.terms-section {
    margin-bottom: 40px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

h2 {
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

p,
li {
    color: #555;
    font-weight: 500;
}

.important-note {
    background-color: #fff4f4;
    border-left: 4px solid #dc3545;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

/* Footer Styling */
.footer-ss {
    background-color: var(--brand-black);
    color: white;
    border-radius: 60px 60px 0 0;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--brand-green);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .content-card {
        padding: 30px 20px;
        margin-top: -40px;
        border-radius: 30px;
    }

    .hero-terms {
        padding: 60px 0 100px;
    }
}