

.page-hero {
  background: #0D1B2A;
  padding: 72px 0 56px;
  color: #FFFFFF;
  border-bottom: 2px solid #00C8FF;
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #6A8AAA;
}

.page-hero .breadcrumb a { color: #6A8AAA; }
.page-hero .breadcrumb a:hover { color: #00C8FF; }
.page-hero .breadcrumb span { color: #3A5A78; }

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1rem;
  color: #8AA8C0;
  max-width: 560px;
  line-height: 1.7;
}

.page-content {
  padding: 72px 0 96px;
  background: #F4F6F8;
}

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-block.reverse { direction: rtl; }
.about-block.reverse > * { direction: ltr; }

.about-block-text .section-label {
  display: inline-block;
  color: #00C8FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-block-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0D1B2A;
  margin-bottom: 16px;
  line-height: 1.35;
}

.about-block-text p {
  font-size: 0.92rem;
  color: #5A7A98;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-block-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #D0DCE8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8AAABB;
  font-size: 0.85rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.value-item {
  background: #FFFFFF;
  border: 1px solid #E2EAF0;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,200,255,0.1);
  border-radius: 6px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg { width: 24px; height: 24px; }

.value-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.82rem;
  color: #5A7A98;
  line-height: 1.65;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-empty {
  background: #FFFFFF;
  border: 2px dashed #D0DCE8;
  border-radius: 8px;
  padding: 80px 40px;
  text-align: center;
  color: #8AA8C0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.policy-empty p { margin-bottom: 8px; }
.policy-empty strong { color: #5A7A98; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0D1B2A;
  color: #FFFFFF;
  padding: 20px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 200, 255, 0.2);
}

.cookie-banner.hidden { display: none; }

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #A0B8CC;
  margin: 0;
}

.cookie-banner-text strong {
  color: #FFFFFF;
}

.cookie-banner-text a {
  color: #00C8FF;
  text-decoration: underline;
}

.cookie-banner-text a:hover { color: #00A8D8; }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: #00C8FF;
  color: #0D1B2A;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.btn-cookie-accept:hover { background: #00A8D8; }

.btn-cookie-decline {
  background: transparent;
  color: #A0B8CC;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.btn-cookie-decline:hover {
  border-color: #00C8FF;
  color: #00C8FF;
}

@media (max-width: 768px) {
  .about-block { grid-template-columns: 1fr; gap: 32px; }
  .about-block.reverse { direction: ltr; }
  .about-values { grid-template-columns: 1fr; }
  .policy-empty { padding: 48px 24px; }
  
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px;
  }
  
  .cookie-banner-actions { justify-content: center; }
}
