/* style/terms-conditions.css */

:root {
    --primary-color: #E44D26;
    --secondary-color: #F7B731;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #000000;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
}

.page-terms-conditions {
    color: var(--text-light); /* Default to light text for dark body background */
    background-color: var(--bg-dark); /* Inherited from body, explicit for clarity */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-terms-conditions__hero-section {
    position: relative;
    width: 100%;
    padding: 120px 20px 80px; /* Adjust padding-top for fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #a8381c 100%);
    text-align: center;
    color: var(--text-light);
    box-sizing: border-box;
}

.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-terms-conditions__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

.page-terms-conditions__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
    background: #e6a72e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__content-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions__content-section p {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.page-terms-conditions__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.page-terms-conditions__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-terms-conditions__contact-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-terms-conditions__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-light);
}

.page-terms-conditions__contact-list li strong {
    color: var(--secondary-color);
}

.page-terms-conditions__cta-section {
    padding: 80px 20px;
    background: linear-gradient(45deg, #1a1a1a 0%, #333333 100%);
    text-align: center;
    color: var(--text-light);
    box-sizing: border-box;
}

.page-terms-conditions__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-terms-conditions__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-terms-conditions__cta-button--primary {
    background: var(--primary-color);
    color: var(--text-light);
    margin-right: 20px;
}

.page-terms-conditions__cta-button--primary:hover {
    background: #c73e1f;
}

.page-terms-conditions__cta-button--secondary {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-terms-conditions__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-terms-conditions__main-title {
        font-size: 2.8em;
    }
    .page-terms-conditions__section-title {
        font-size: 2em;
    }
    .page-terms-conditions__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__hero-section {
        padding-top: 100px !important; /* Mobile fixed header adjustment */
        padding-bottom: 60px;
    }
    .page-terms-conditions__main-title {
        font-size: 2.2em;
    }
    .page-terms-conditions__description {
        font-size: 1em;
    }
    .page-terms-conditions__content-section {
        padding: 60px 0;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__content-section p,
    .page-terms-conditions__list li,
    .page-terms-conditions__contact-list li {
        font-size: 0.95em;
    }
    .page-terms-conditions__cta-section {
        padding: 60px 15px;
    }
    .page-terms-conditions__cta-title {
        font-size: 2em;
    }
    .page-terms-conditions__cta-description {
        font-size: 1em;
    }
    .page-terms-conditions__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }
    .page-terms-conditions__cta-button--primary {
        margin-bottom: 15px;
    }
    .page-terms-conditions__cta-button--secondary {
        margin-bottom: 0;
    }
    .page-terms-conditions__container {
        padding: 0 15px;
    }
    .page-terms-conditions__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__main-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__cta-button {
        font-size: 0.95em;
        padding: 10px 25px;
    }
}