/* 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 background */
  background-color: #ffffff; /* Body background is white */
}

/* Hero Section */
.page-cookies-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #017439; /* Brand primary color for hero background */
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Prevent content overflow */
}

.page-cookies-policy__hero-content {
  max-width: 800px;
  z-index: 2;
  margin-bottom: 30px;
}

.page-cookies-policy__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

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

.page-cookies-policy__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-cookies-policy__btn-primary,
.page-cookies-policy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-cookies-policy__btn-primary {
  background-color: #C30808; /* Custom color for register */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-cookies-policy__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-cookies-policy__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-cookies-policy__btn-secondary:hover {
  background-color: #C30808;
  color: #ffffff;
}

.page-cookies-policy__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-top: 40px;
  min-height: 200px; /* Minimum size requirement */
  min-width: 200px; /* Minimum size requirement */
}

/* Content Area */
.page-cookies-policy__content-area {
  padding: 60px 20px;
  max-width: 100%;
  box-sizing: border-box;
}

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