* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral: #FF6B6B;
  --coral-light: #FF8E8E;
  --coral-dark: #E85555;
  --indigo: #5B5FD8;
  --indigo-light: #7B7FE8;
  --indigo-dark: #4B4FC8;
  --text-dark: #2D3142;
  --text-medium: #5A6074;
  --text-light: #8B93A8;
  --bg-light: #FAFBFC;
  --bg-white: #FFFFFF;
  --border: #E8EBF0;
  --shadow: rgba(45, 49, 66, 0.08);
  --shadow-medium: rgba(45, 49, 66, 0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  display: block;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(91, 95, 216, 0.05) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-medium);
}

.content-section {
  padding: 64px 0 80px;
}

.content-block {
  margin-bottom: 48px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.3;
}

.content-block p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.legal-content {
  min-height: 400px;
}

.legal-intro {
  margin-bottom: 48px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.03) 0%, rgba(91, 95, 216, 0.03) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--coral);
}

.legal-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-content-grid.reverse {
  direction: rtl;
}

.about-content-grid.reverse > * {
  direction: ltr;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-svg-illustration {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(91, 95, 216, 0.05) 100%);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(45, 49, 66, 0.08);
}

.photo-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(91, 95, 216, 0.1) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235B5FD8" stroke-width="1.5"><rect x="3" y="3" width="18" height="18" rx="2"/><circle cx="8.5" cy="8.5" r="1.5"/><path d="m21 15-5-5L5 21"/></svg>') center/contain no-repeat;
  opacity: 0.3;
}

.svg-illustration-section {
  margin: 80px 0;
  text-align: center;
}

.about-illustration {
  max-width: 100%;
  height: auto;
  margin-bottom: 32px;
}

.illustration-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.label-item {
  text-align: center;
}

.label-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.label-item p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
}

.values-section {
  margin: 80px 0;
}

.values-section h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  color: var(--text-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-card {
  padding: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.value-card svg {
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.value-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
}

.impact-section {
  margin-top: 80px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(91, 95, 216, 0.05) 100%);
  border-radius: 16px;
  text-align: center;
}

.impact-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.impact-intro, .impact-conclusion {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  max-width: 900px;
  margin: 0 auto 24px;
}

.impact-conclusion {
  margin-bottom: 0;
}

.footer {
  background: var(--text-dark);
  color: white;
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-name {
  color: white;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content-grid.reverse {
    direction: ltr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .illustration-labels {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .page-hero {
    padding: 48px 0 40px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .content-section {
    padding: 48px 0 64px;
  }

  .content-block h2 {
    font-size: 24px;
  }

  .content-block p {
    font-size: 16px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .photo-placeholder {
    height: 300px;
  }

  .about-svg-illustration {
    max-width: 350px;
    padding: 16px;
  }

  .values-section h2,
  .impact-section h2 {
    font-size: 28px;
  }

  .impact-section {
    padding: 32px 24px;
  }

  .impact-intro, .impact-conclusion {
    font-size: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
}
