:root { --deep-navy: #08162B; --glass-fill: #10233F; --line: #244D84; --main-text: #F3F8FF; --soft-text: #AFC4E8; }
.page-gdpr { background-color: var(--deep-navy); color: var(--main-text); font-family: 'Inter', 'Segoe UI', Arial, sans-serif; line-height: 1.7; overflow-x: hidden; }
.page-gdpr img { max-width: 100%; height: auto; }
.page-gdpr * { box-sizing: border-box; }
.page-gdpr a { transition: opacity 0.3s ease; }
.page-gdpr__hero { padding: 10px 16px 0; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; }
.page-gdpr__hero-image-wrapper { width: 100%; margin: 0 0 16px; }
.page-gdpr__hero-image { width: 100%; max-width: 100%; aspect-ratio: 1200 / 300; object-fit: cover; border-radius: 18px; display: block; }
.page-gdpr__hero-content { width: 100%; max-width: 1200px; text-align: left; padding: 24px 28px; border: 1px solid var(--line); background: var(--glass-fill); border-radius: 18px; }
.page-gdpr__hero-title { font-size: clamp(1.4rem, 4vw, 2.3rem); font-weight: 800; line-height: 1.3; letter-spacing: 0.5px; color: var(--main-text); max-width: 980px; margin: 0 0 12px; }
.page-gdpr__hero-description { font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--soft-text); max-width: 900px; margin: 0 0 28px; }
.page-gdpr__hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 4px; }
.page-gdpr__hero-btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 700; text-decoration: none; text-align: center; border: none; cursor: pointer; line-height: 1.2; }
.page-gdpr__hero-btn--primary { background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); color: var(--main-text); box-shadow: 0 6px 16px rgba(24, 104, 255, 0.35); }
.page-gdpr__hero-btn--primary:hover { opacity: 0.9; }
.page-gdpr__hero-btn--secondary { background: transparent; color: var(--main-text); border: 1px solid var(--line); }
.page-gdpr__hero-btn--secondary:hover { background: rgba(255, 255, 255, 0.05); }
/* intro */
.page-gdpr__intro { max-width: 1000px; margin: 32px auto 16px; padding: 0 20px; }
.page-gdpr__intro-text { font-size: 1.05rem; color: var(--main-text); margin-bottom: 14px; }
.page-gdpr__intro-sub { font-size: 1.05rem; color: var(--soft-text); }
/* logo grid */
.page-gdpr__logo-section { padding: 16px 16px 20px; max-width: 1200px; margin: 8px auto 0; }
.page-gdpr__logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.page-gdpr__logo-item { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--glass-fill); border: 1px solid var(--line); border-radius: 16px; padding: 12px; transition: transform 0.3s ease; }
.page-gdpr__logo-item:nth-child(5){ grid-column: 2; }
.page-gdpr__logo-item:nth-child(6){ grid-column: 3; }
.page-gdpr__logo-item:hover { transform: translateY(-4px); border-color: #4FA8FF; }
.page-gdpr__logo-image { width: 100%; aspect-ratio: 2 / 1; object-fit: contain; }
/* guide */
.page-gdpr__guide-section { padding: 24px 16px;
}
.page-gdpr__guide-inner { max-width: 1000px; margin: 0 auto; }
.page-gdpr__guide-title { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; text-align: center; margin-bottom: 16px; color: var(--main-text); }
.page-gdpr__guide-intro { max-width: 780px; margin: 0 auto 40px; color: var(--soft-text); text-align: center; font-size: 1.05rem; }
.page-gdpr__guide-article { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; padding: 24px 28px; background: var(--glass-fill); border: 1px solid var(--line); border-radius: 16px; }
.page-gdpr__guide-text h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); margin: 0 0 12px; color: var(--main-text); }
.page-gdpr__guide-text p { margin-bottom: 12px; color: var(--soft-text); }
.page-gdpr__guide-figure { margin: 12px auto 0; width: 100%; max-width: 700px; }
.page-gdpr__guide-figure img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; border-radius: 8px; }
/* faq */
.page-gdpr__faq-section { padding: 20px;
}
.page-gdpr__faq-container { max-width: 850px; margin: 0 auto; }
.page-gdpr__faq-heading { font-size: clamp(1.4rem, 4vw, 2rem); text-align: center; font-weight: 800; margin: 0 0 28px; }
.page-gdpr__faq-list { display: flex; flex-direction: column; gap: 12px; }
.page-gdpr__faq-item { border-radius: 12px; padding: 4px 0; border: none; background: transparent; }
.page-gdpr__faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: var(--glass-fill); border: 1px solid var(--line); padding: 18px 20px; border-radius: 10px; font-weight: 600; color: var(--main-text); }
.page-gdpr__faq-item summary::-webkit-details-marker { display: none; }
.page-gdpr__faq-item[open] summary { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom-color: transparent; }
.page-gdpr__faq-question { display: flex; align-items: flex-start; gap: 16px; font-size: 1rem; line-height: 1.4; flex: 1; justify-content: space-between; }
.page-gdpr__faq-toggle { font-size: 1.4rem; font-weight: 400; color: #F2C14E; line-height: 1; flex-shrink: 0;
}
.page-gdpr__faq-item[open] .page-gdpr__faq-toggle { color: #4FA8FF; }
.page-gdpr__faq-answer { background: var(--glass-fill); padding: 20px; border: 1px solid var(--line); border-top: none; border-radius: 0 0 10px 10px; color: var(--soft-text); }
/* cta */
.page-gdpr__cta-section { text-align: center;
}
.page-gdpr__cta-section { background: linear-gradient(120deg, rgba(16,35,63,0.9), rgba(8,22,43,0.98)); padding: 36px 20px; border: 1px solid var(--line); max-width: 100%; margin: 20px 0; }
.page-gdpr__cta-title { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 800; color: var(--main-text); margin-bottom: 16px; }
.page-gdpr__cta-text { max-width: 750px; margin: 0 auto 32px; color: var(--soft-text); font-size: 1.05rem; }
.page-gdpr__cta-buttons { display: flex; flex-wrap: wrap;
}
.page-gdpr__cta-buttons { gap: 16px; justify-content: center;
}
.page-gdpr__cta-btn { padding: 16px 36px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: 0.3s;
}
.page-gdpr__cta-btn { background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); color: var(--main-text); }
.page-gdpr__cta-btn--hot { background: linear-gradient(135deg, #F2C14E, #e0a91a); color: #08162B; }
.page-gdpr__cta-btn:hover { opacity: 0.85; transform: translateY(-3px); }
@media (max-width: 768px) {
  .page-gdpr__hero { padding: 8px 12px 0; }
  .page-gdpr__hero-image { aspect-ratio: 2 / 1; }
  .page-gdpr__hero-content { padding: 20px 16px; }
  .page-gdpr__hero-actions { flex-direction: column; align-items: stretch; }
  .page-gdpr__hero-btn,
  .page-gdpr__cta-btn { max-width: 100%; width: auto; white-space: normal; word-wrap: break-word; margin: 0; }
  .page-gdpr__logo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px;
}
  .page-gdpr__logo-item:nth-child(5),
  .page-gdpr__logo-item:nth-child(6) { grid-column: auto; background-size: 100% 100%; }
  .page-gdpr__logo-image { height: auto; max-width: 160px; }
  .page-gdpr__guide-article { padding: 16px 12px; }
  .page-gdpr__guide-figure { width: 100%; }
  .page-gdpr img { max-width: 100%; }
  .page-gdpr__cta-buttons { align-items: center; }
  .page-gdpr__cta-btn { width: 100%; text-align: center; box-sizing: border-box; }
}