:root {
  --primary: #50C878;
  --accent: #BFFF00;
  --highlight: #138808;
  --bg: #FAFFF8;
  --dark-bg: #0D1F1A;
  --text: #1A2E28;
  --text-light: #4A5E58;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(13, 31, 26, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-bg);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
}

/* Button */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(80, 200, 120, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark-bg);
}

.btn-accent:hover {
  background-color: var(--highlight);
  color: var(--white);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 255, 248, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 30px;
  height: 30px;
  fill: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-bg);
  transition: var(--transition);
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: linear-gradient(rgba(13, 31, 26, 0.6), rgba(13, 31, 26, 0.4)), url('../images/hero-fly-yoga-group.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* Block 1: Step by Step */
.step-map {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 50px;
  position: relative;
}

.step-map::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--primary);
  z-index: 1;
}

.step-item {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step-content {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-grow: 1;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.mini-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.mini-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.mini-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.compact-form {
  background: var(--dark-bg);
  padding: 40px;
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--white);
}

.compact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.compact-form input {
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.compact-form button {
  width: 100%;
}

.learn-more-container {
  text-align: center;
}

/* Block 2: Carousel */
.carousel-section {
  background: var(--dark-bg);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.carousel {
  position: relative;
  height: 600px;
}

.carousel-inner {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 20px 40px;
  background: linear-gradient(transparent, rgba(13, 31, 26, 0.9));
  text-align: center;
}

.carousel-caption h3 {
  color: var(--white);
  font-size: 2rem;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  background: rgba(250, 255, 248, 0.3);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary);
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Block 3: FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Block 4: About Studio */
.about-section {
  background-color: var(--white);
}

.circular-layout {
  position: relative;
  max-width: 900px;
  height: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-center {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.circle-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card {
  position: absolute;
  width: 250px;
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
  opacity: 0;
  transition: all 0.8s ease;
}

.info-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.info-card:nth-child(2) { top: 5%; left: 0; transform: translateX(-50px); }
.info-card:nth-child(3) { top: 5%; right: 0; transform: translateX(50px); }
.info-card:nth-child(4) { bottom: 5%; left: 0; transform: translateX(-50px); }
.info-card:nth-child(5) { bottom: 5%; right: 0; transform: translateX(50px); }

.circular-layout.visible .info-card {
  opacity: 1;
  transform: translateX(0);
}

/* Block 5: Schedule */
.schedule-table-wrapper {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.schedule-table th,
.schedule-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.schedule-table th {
  background-color: var(--dark-bg);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.1rem;
}

.schedule-table th:first-child { border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
.schedule-table th:last-child { border-top-right-radius: 8px; border-bottom-right-radius: 8px; }

.schedule-table tr {
  transition: var(--transition);
}

.schedule-table tbody tr:hover {
  background-color: var(--bg);
  transform: scale(1.01);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.schedule-table td {
  color: var(--text-light);
}

.schedule-table td strong {
  color: var(--text);
}

.level-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.level-beginner { background: #e6f9ed; color: var(--highlight); }
.level-all { background: #f0f7ff; color: #0066cc; }
.level-intermediate { background: #fff5e6; color: #cc6600; }

/* Block 6: Pricing */
.pricing-section {
  background-color: var(--dark-bg);
  color: var(--white);
}

.pricing-section .section-title {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.price-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.price-card.popular {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark-bg);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.price-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 5px;
}

.price-per-class {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.price-features {
  margin: 30px 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.price-card .btn {
  width: 100%;
}

/* Block 7: Calculator */
.calculator-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calc-group {
  margin-bottom: 30px;
}

.calc-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-bg);
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

input[type="range"] {
  flex-grow: 1;
  -webkit-appearance: none;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  width: 40px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.radio-btn {
  display: block;
  position: relative;
  cursor: pointer;
}

.radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-label {
  display: block;
  padding: 15px;
  background: var(--bg);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  font-weight: 500;
}

.radio-btn input:checked ~ .radio-label {
  border-color: var(--primary);
  background: rgba(80, 200, 120, 0.1);
  color: var(--primary);
}

.calc-result {
  background: var(--dark-bg);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 40px;
}

.calc-result h4 {
  color: var(--accent);
  margin-bottom: 10px;
}

.result-price {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* Block 8: Selling Text */
.selling-text-section {
  background-color: var(--bg);
  text-align: center;
  padding: 100px 0;
}

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

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 40px;
  line-height: 1.4;
  font-style: italic;
}

.selling-content {
  font-size: 1.1rem;
  color: var(--text-light);
}

.selling-content p {
  margin-bottom: 25px;
}

.selling-content strong {
  color: var(--dark-bg);
}

.highlight-text {
  background: linear-gradient(120deg, rgba(191, 255, 0, 0.4) 0%, rgba(191, 255, 0, 0.4) 100%);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: 0 90%;
  padding: 0 5px;
}

/* Block 9: Infographic */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(80, 200, 120, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-text h4 {
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
}

.info-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Block 10: Gallery */
.gallery-section {
  background: var(--dark-bg);
  color: var(--white);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-line {
  width: 100%;
  height: 2px;
  background: var(--primary);
  margin-top: 40px;
}

/* Contacts */
.contacts-section {
  background: var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contacts-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contacts-info p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#map-container {
  width: 100%;
  height: 300px;
  background: #eee;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 30px;
}

.contacts-form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
}

.contacts-form h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.2);
}

.contacts-form .btn {
  width: 100%;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-col p, .footer-col ul {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  max-width: 60%;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .circular-layout {
    height: auto;
    flex-direction: column;
    gap: 30px;
  }
  
  .circle-center {
    position: relative;
    width: 300px;
    height: 300px;
  }
  
  .info-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .mini-cards {
    grid-template-columns: 1fr;
  }
  
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cookie-text {
    max-width: 100%;
  }
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 10px; }
.mb-4 { margin-bottom: 20px; }
.mt-4 { margin-top: 20px; }

/* Simple page styles */
.page-header {
  padding: 150px 0 80px;
  background: var(--dark-bg);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
}

.page-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  margin: 30px 0 15px;
}

.page-content p {
  margin-bottom: 15px;
}
