/* ===================================================================
   Terms of Use Page Styles
   =================================================================== */

:root {
    --primary-color: #D4A574;
    --primary-color-dark: #B8945F;
}

/* Hero Banner */
.terms-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/production/terms.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.terms-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 31, 0.6); /* Dark overlay for contrast */
    z-index: 1;
    color: #fff !important;
}

.terms-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff !important;
}

.terms-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #fff !important;
}

.terms-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content Area */
.terms-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.terms-main .container {
    max-width: 840px;
}

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

.terms-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.terms-content p,
.terms-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1em;
}

.terms-content .effective-date {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 40px;
    text-align: left;
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
}

.terms-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-hero {
        padding: 80px 0;
    }
    .terms-hero .hero-title {
        font-size: 2.5rem;
    }
    .terms-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    .terms-main {
        padding: 60px 15px;
    }
    .terms-content h2 {
        font-size: 1.6rem;
    }
    .terms-content p,
    .terms-content li {
        font-size: 1rem;
    }
}
