/* ====================================================================
   POLICY PAGES STYLES (Cancellation, Privacy, Terms) - DARK THEME
==================================================================== */

/* Page Header */
.page-header-container.hero-slider {
    position: relative;
    height: 300px; /* Adjust height as needed */
    background-image: url('../assets/images/lake-lewisville-hero-1.jpg'); /* Generic background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-50); /* Dark overlay for text readability */
    z-index: 1;
}

.page-title {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cta-cyan);
}

/* Main Content Area */
.policy-main {
    padding: 60px 0;
    background-color: transparent; /* Inherit dark theme from body */
}

.policy-section .container {
    max-width: 800px; /* Optimal width for reading text */
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03); /* Subtle container background */
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cta-magenta); /* Use brand color */
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cta-yellow);
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-content p, .policy-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content a {
    color: var(--cta-cyan);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content strong {
    font-weight: 600;
    color: var(--cta-yellow);
}
