/* style/terms-conditions.css */

/* Variables */
:root {
    --primary-color: #4A148C; /* Deep Purple */
    --secondary-color: #FFC107; /* Amber */
    --text-color-light-bg: #333333;
    --text-color-dark-bg: #ffffff;
    --background-color-light: #f4f4f4; /* from shared.css body */
    --border-color: #e0e0e0;
}

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-light-bg); /* Default text color for light body background */
    line-height: 1.6;
    background-color: var(--background-color-light); /* Inherit or explicitly set for consistency */
}

/* Fixed Header Offset */
.page-terms-conditions__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-terms-conditions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Adjust padding as needed */
    background: var(--primary-color); /* Dark background for hero */
    color: var(--text-color-dark-bg);
    overflow: hidden; /* Ensure no overflow from content */
}

.page-terms-conditions__hero-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.page-terms-conditions__main-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Amber for title on dark background */
}

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

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color); /* Amber button */
    color: var(--primary-color); /* Deep Purple text on Amber button */
    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);
}

.page-terms-conditions__cta-button:hover {
    background: #ffdb58; /* Slightly lighter amber */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: var(--background-color-light); /* Light background for content */
    color: var(--text-color-light-bg);
}

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: var(--primary-color); /* Deep Purple for section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions__sub-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-terms-conditions p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-terms-conditions a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-terms-conditions a:hover {
    color: var(--secondary-color);
}

.page-terms-conditions__image-full {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}