/* style/cookies-policy.css */

/* Base styles for the cookie policy page */
.page-cookies-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--dark-bg-1, #0d0d0d); /* Use shared dark background as body default */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* King52 primary color gradient */
    color: #ffffff; /* Light text for dark background */
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-cookies-policy__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-cookies-policy__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cookies-policy__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-cookies-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

/* Content Area */
.page-cookies-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff; /* White background for main content for readability */
    color: #333333; /* Dark text for white background */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: -50px; /* Overlap hero section slightly */
    position: relative;
    z-index: 2;
}

.page-cookies-policy__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-cookies-policy__section-title {
    font-size: 2em;
    color: #26A9E0; /* Brand color for titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.page-cookies-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-cookies-policy__highlight {
    font-weight: bold;
    color: #26A9E0; /* Highlight important terms with brand color */
}