/* style/cookies-policy.css */
/* Base styles, assuming body background from shared.css is dark (--page-bg: #0A0A0A) */
.page-cookies-policy {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
  background-color: transparent; /* Main content area itself doesn't need a background if body handles it */
}

/* Hero Section */
.page-cookies-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 10px 20px 60px;
  box-sizing: border-box;
  text-align: center;
  background-color: #0A0A0A; /* Background color from custom配色 */
}

.page-cookies-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and text */
}

.page-cookies-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-cookies-policy__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #FFD36B; /* Glow color for prominence */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-cookies-policy__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

.page-cookies-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cookies-policy__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-cookies-policy__section {
  padding: 60px 20px;
  background-color: #0A0A0A; /* Background color from custom配色 */
  border-bottom: 1px solid #3A2A12; /* Border color */
}