/* style/cookies-policy.css */

/* Base styles for the cookie policy page */
.page-cookies-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from body via shared.css */
}

/* Ensure content sections have a readable background and text color */
.page-cookies-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Light background for content readability */
  color: #333333; /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.page-cookies-policy__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Ensure image doesn't overflow */
  background-color: #0a0a0a; /* Dark background for hero */
  color: #ffffff; /* Light text for hero */
}

.page-cookies-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-cookies-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  line-height: 1.2;
}

.page-cookies-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-cookies-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 1;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-cookies-policy__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for main section titles */
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
}

.page-cookies-policy__sub-title {
  font-size: 1.8em;
  color: #26A9E0; /* Brand color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cookies-policy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-cookies-policy__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}