/* Terms and Conditions Styles */

.terms-section {
    background-color: var(--background-light);
    min-height: 80vh;
}

.terms-content {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 3rem;
}

.terms-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.terms-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.terms-intro .lead {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.terms-sections {
    margin-top: 2rem;
}

.terms-section-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.terms-section-item:last-child {
    border-bottom: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.section-number {
    background: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.section-content {
    margin-left: 3rem;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.terms-footer {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.terms-footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-content {
        padding: 2rem 1.5rem;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .section-content {
        margin-left: 0;
    }
    
    .terms-intro {
        padding: 1.5rem;
    }
    
    .terms-intro .lead {
        font-size: 1.1rem;
    }
}
