/* style/cookies-policy.css */\n\n/* Base styles for the cookie policy page */\n.page-cookies-policy {\n  font-family: Arial, sans-serif;\n  line-height: 1.6;\n  color: #f0f0f0; /* Light text for dark body background */\n  background-color: transparent; /* Body background handled by shared.css */\n}\n\n/* Hero Section */\n.page-cookies-policy__hero-section {\n  position: relative;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  min-height: 500px;\n  padding: var(--header-offset, 120px) 20px 60px; /* Use header offset */\n  background-color: #0A1931; /* Main brand color for hero background */\n  overflow: hidden;\n  text-align: center;\n}\n\n.page-cookies-policy__hero-content {\n  position: relative;\n  z-index: 2;\n  max-width: 800px;\n  color: #ffffff;\n  padding: 20px;\n}\n\n.page-cookies-policy__main-title {\n  font-size: 2.8em;\n  margin-bottom: 15px;\n  color: #FFD700; /* Accent color for title */\n  line-height: 1.2;\n}\n\n.page-cookies-policy__hero-description {\n  font-size: 1.1em;\n  margin-bottom: 30px;\n  color: #f0f0f0;\n}\n\n.page-cookies-policy__hero-image {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  opacity: 0.3; /* Subtle background image */\n  z-index: 1;\n}\n\n/* General Content Area */\n.page-cookies-policy__content-area {\n  padding: 60px 20px;\n}\n\n.page-cookies-policy__container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 15px;\n  box-sizing: border-box;\n}\n\n.page-cookies-policy__section-title {\n  font-size: 2.2em;\n  margin-bottom: 30px;\n  text-align: center;\n  color: #FFD700; /* Accent color for section titles */\n  line-height: 1.3;\n}\n\n.page-cookies-policy__paragraph {\n  font-size: 1.05em;\n  margin-bottom: 20px;\n  line-height: 1.7;\n}\n\n.page-cookies-policy__list {\n  list-style: disc;\n  margin-left: 25px;\n  margin-bottom: 20px;\n}\n\n.page-cookies-policy__list-item {\n  margin-bottom: 10px;\n  font-size: 1.05em;\n}\n\n.page-cookies-policy__list-item strong {\n  color: #FFD700; /* Highlight important terms */\n}\n\n.page-cookies-policy__list-item ul {\n  list-style: circle;\n  margin-left: 20px;\n  margin-top: 5px;\n}\n\n.page-cookies-policy__content-image {\n  max-width: 100%;\n  height: auto;\n  display: block;\n  margin: 40px auto;\n  border-radius: 8px;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n}\n\n/* Color schemes for sections */\n.page-cookies-policy__dark-section {\n  background-color: #1a1a2e; /* Body background color */\n  color: #f0f0f0;\n}\n\n.page-cookies-policy__light-section {\n  background-color: #2a3a5e; /* Slightly lighter dark shade */\n  color: #ffffff;\n}\n\n/* Grid for cards */\n.page-cookies-policy__grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 40px;\n  margin-bottom: 40px;\n}\n\n.page-cookies-policy__card {\n  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards on dark background */\n  padding: 30px;\n  border-radius: 10px;\n  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);\n  display: flex;\n  flex-direction: column;\n  color: #ffffff;\n  border: 1px solid rgba(255, 255, 255, 0.15);\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.page-cookies-policy__card:hover {\n  transform: translateY(-5px);\n  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);\n}\n\n.page-cookies-policy__card-title {\n  font-size: 1.4em;\n  color: #FFD700; /* Accent color for card titles */\n  margin-bottom: 15px;\n  line-height: 1.4;\n}\n\n.page-cookies-policy__card-text {\n  font-size: 0.95em;\n  line-height: 1.6;\n}\n\n/* Buttons */\n.page-cookies-policy__btn-primary,\n.page-cookies-policy__btn-secondary {\n  display: inline-block;\n  padding: 14px 30px;\n  border-radius: 5px;\n  text-decoration: none;\n  font-weight: bold;\n  font-size: 1.05em;\n  transition: all 0.3s ease;\n  cursor: pointer;\n  text-align: center;\n  max-width: 100%; /* Ensure responsiveness */\n  box-sizing: border-box;\n  white-space: normal; /* Allow text wrap */\n  word-wrap: break-word; /* Allow text wrap */\n}\n\n.page-cookies-policy__btn-primary {\n  background-color: #FFD700; /* Accent color for primary button */\n  color: #0A1931; /* Dark text for accent background */\n  border: 2px solid #FFD700;\n  margin-top: 20px;\n}\n\n.page-cookies-policy__btn-primary:hover {\n  background-color: #e6c200;\n  border-color: #e6c200;\n  color: #000000;\n}\n\n.page-cookies-policy__btn-secondary {\n  background-color: transparent;\n  color: #FFD700; /* Accent color for secondary button text */\n  border: 2px solid #FFD700;\n  margin-top: 20px;\n}\n\n.page-cookies-policy__btn-secondary:hover {\n  background-color: #FFD700;\n  color: #0A1931;\n}\n\n/* FAQ Section */\n.page-cookies-policy__faq-section {\n  padding: 60px 20px;\n}\n\n.page-cookies-policy__faq-list {\n  margin-top: 40px;\n}\n\n.page-cookies-policy__faq-item {\n  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for FAQ items */\n  border-radius: 10px;\n  margin-bottom: 20px;\n  overflow: hidden;\n  border: 1px solid rgba(255, 255, 255, 0.15);\n}\n\n.page-cookies-policy__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 20px 30px;\n  cursor: pointer;\n  background-color: rgba(255, 255, 255, 0.05);\n  transition: background-color 0.3s ease;\n}\n\n.page-cookies-policy__faq-question:hover {\n  background-color: rgba(255, 255, 255, 0.12);\n}\n\n.page-cookies-policy__faq-title {\n  font-size: 1.25em;\n  color: #ffffff;\n  margin: 0;\n  flex-grow: 1;\n}\n\n.page-cookies-policy__faq-toggle {\n  font-size: 1.8em;\n  color: #FFD700;\n  font-weight: bold;\n  margin-left: 20px;\n  transition: transform 0.3s ease;\n}\n\n.page-cookies-policy__faq-item.active .page-cookies-policy__faq-toggle {\n  transform: rotate(45deg);\n}\n\n.page-cookies-policy__faq-answer {\n  max-height: 0;\n  overflow: hidden;\n  padding: 0 30px;\n  transition: max-height 0.4s ease-out, padding 0.4s ease-out;\n  color: #f0f0f0;\n}\n\n.page-cookies-policy__faq-item.active .page-cookies-policy__faq-answer {\n  max-height: 1000px !important; /* Sufficiently large value */\n  padding: 20px 30px;\n}\n\n.page-cookies-policy__faq-answer p {\n  margin-bottom: 0; /* Remove default paragraph margin */\n}