/* Terms & Conditions Page Styling */

.terms-hero {
    background: linear-gradient(135deg, var(--primary-color, #8B4513) 0%, var(--secondary-color, #654321) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.terms-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.terms-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.section-padding {
    padding: 60px 0;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.terms-section h2 {
    color: var(--primary-color, #8B4513);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color, #D4A574);
}

.terms-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}

.terms-text p {
    margin-bottom: 15px;
}

.terms-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-text li {
    margin-bottom: 10px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-hero {
        padding: 80px 0 40px;
    }

    .terms-hero .hero-title {
        font-size: 2rem;
    }

    .terms-hero .hero-subtitle {
        font-size: 1rem;
    }

    .terms-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }

    .terms-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-hero .hero-title {
        font-size: 1.75rem;
    }

    .terms-section {
        padding: 15px;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }
}
