.terms-hero {
    text-align: center;
    padding: 60px 0;
    color: #7d3cff;
}

.terms-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.terms-hero p {
    font-size: 1.1rem;
    color: #555;
}

.terms-content {
    padding: 40px 0;
}

.terms-section {
    margin-bottom: 35px;
    background: #f9f9f9;
    border-left: 5px solid #7d3cff;
    padding: 20px 25px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #0b0f1a;
    margin-bottom: 10px;
}

.terms-section p {
    font-size: 1rem;
    color: #333;
}

.terms-section a {
    color: #7d3cff;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media(max-width:768px) {
    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-section {
        padding: 15px 20px;
    }
}