.terms-section {
    padding: 40px 0;
    background-color: #f6f8fa;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 48px 36px 36px 36px;
}

.terms-title {
    font-size: 2.4rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.terms-last-updated {
    color: #888;
    text-align: center;
    margin-bottom: 32px;
    font-size: 1rem;
}

.terms-body {
    margin-bottom: 32px;
}

.terms-body section {
    background: #f3f6fa;
    border-radius: 8px;
    margin-bottom: 24px;
    padding: 28px 28px 18px 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.terms-body h2 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
    border: none;
    padding: 0;
}

.terms-body p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.terms-body ul {
    margin: 0 0 10px 20px;
    padding: 0;
}

.terms-body li {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 6px;
    list-style: disc inside;
}

.terms-footer {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.terms-footer p {
    color: #888;
    margin-bottom: 8px;
}

.terms-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.terms-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .terms-container {
        padding: 24px 8px 16px 8px;
    }
    .terms-title {
        font-size: 2rem;
    }
    .terms-body section {
        padding: 16px 10px 10px 10px;
    }
} 