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

body {
font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #353535;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
max-width: 1320px;
  margin: 0 auto;
padding: 0 20px;
}

.wrap-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #d9d9d9;
  position: sticky;
  top: 0;
  z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo-img {
height: 42px;
  width: auto;
}

.main-nav ul {
  list-style: none;
display: flex;
  gap: 32px;
}

.main-nav a {
  color: #353535;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
color: #3c6e71;
}

.mobile-toggle {
display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #353535;
  font-size: 28px;
}

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #353535;
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
}

.cookie-wrap {
max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  font-size: 14px;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cookie-btn {
  background: #3c6e71;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.cookie-btn:hover {
  background: #284b63;
}

.cookie-link {
  color: #d9d9d9;
  text-decoration: none;
  font-size: 14px;
}

.cookie-link:hover {
  color: #ffffff;
}

.hero-area {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3c6e71;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}

.quality-badge i {
  font-size: 18px;
}

.main-title {
  font-size: 64px;
  color: #353535;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead-text {
  font-size: 20px;
  color: #353535;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-accent {
  background: #3c6e71;
  color: #ffffff;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-accent:hover {
  background: #284b63;
  box-shadow: 0 8px 24px rgba(60, 110, 113, 0.3);
}

.btn-outline {
  background: transparent;
  color: #3c6e71;
  padding: 16px 36px;
  text-decoration: none;
  border: 2px solid #3c6e71;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: #3c6e71;
  color: #ffffff;
}

.img-wrap-hero {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.metric-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.metric-icon {
  width: 48px;
  height: 48px;
  background: #3c6e71;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.metric-num {
  font-size: 28px;
  font-weight: 700;
  color: #353535;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.metric-label {
  font-size: 13px;
  color: #353535;
  opacity: 0.8;
}

.ticker-strip {
  background: #353535;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-block;
  padding: 0 24px;
}

.ticker-dot {
  display: inline-block;
  color: #3c6e71;
  font-size: 20px;
}

.courses-bento {
  padding: 100px 0;
  background: #ffffff;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.heading-xl {
  font-size: 52px;
  color: #353535;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.link-with-arrow {
  color: #3c6e71;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.link-with-arrow:hover {
  gap: 14px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 24px;
}

.bento-item {
  border-radius: 16px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
}

.bento-item:hover {
  border-color: #3c6e71;
}

.large-box {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.medium-box:nth-of-type(2) {
  grid-column: 7 / 10;
  grid-row: 1 / 2;
}

.medium-box:nth-of-type(3) {
  grid-column: 10 / 13;
  grid-row: 1 / 2;
}

.small-box {
  grid-column: 7 / 13;
  grid-row: 2 / 3;
}

.accent-bg {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  color: #ffffff;
  border: none;
}

.dark-box {
  background: #353535;
  color: #ffffff;
  border: none;
}

.box-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.icon-badge {
  width: 56px;
  height: 56px;
  background: #3c6e71;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 20px;
}

.box-title {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.accent-bg .box-title,
.dark-box .box-title {
  color: #ffffff;
}

.box-text {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: auto;
  opacity: 0.9;
}

.progress-bars {
  margin: 24px 0;
}

.progress-item {
  margin-bottom: 16px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.progress-track {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
}

.box-meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.85;
}

.box-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-split {
  padding: 100px 0;
  background: #f8f9fa;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.para-lg {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #353535;
}

.visual-container {
  position: relative;
  border-radius: 16px;
}

.split-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.stat-overlay {
  position: absolute;
  top: 24px;
  right: 24px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 24px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.stat-value {
  font-size: 42px;
  font-weight: 700;
  color: #3c6e71;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: #353535;
  opacity: 0.8;
}

.numbered-grid {
  padding: 100px 0;
  background: #ffffff;
}

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

.heading-xl.center-align {
  margin-bottom: 60px;
}

.numbers-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.number-card {
  background: #353535;
  padding: 40px 32px;
  border-radius: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.number-card:hover {
  background: #3c6e71;
}

.number-display {
  font-size: 72px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0.3;
}

.number-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.number-desc {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.85;
}

.team-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.team-image-side {
  position: relative;
}

.team-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.glass-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 28px 36px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.glass-num {
  font-size: 48px;
  font-weight: 700;
  color: #3c6e71;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.glass-label {
  font-size: 15px;
  color: #353535;
  opacity: 0.8;
}

.promo-block {
  padding: 80px 0;
  background: #ffffff;
}

.promo-container {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.promo-heading {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.promo-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn-light-outline {
  background: transparent;
  color: #ffffff;
  padding: 16px 36px;
  text-decoration: none;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-light-outline:hover {
  background: #ffffff;
  color: #3c6e71;
}

.promo-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promo-metric {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

.promo-big {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.promo-small {
  font-size: 15px;
  color: #ffffff;
  opacity: 0.9;
}

.reviews-area {
  padding: 100px 0;
  background: #f8f9fa;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.review-box {
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.review-box:hover {
  border-color: #3c6e71;
}

.quote-mark {
  width: 48px;
  height: 48px;
  background: #3c6e71;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 17px;
  line-height: 1.7;
  color: #353535;
  margin-bottom: 24px;
}

.reviewer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name {
  font-size: 16px;
  color: #353535;
}

.reviewer-position {
  font-size: 14px;
  color: #3c6e71;
}

.main-footer {
  background: #353535;
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: 0;
}

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

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d9d9d9;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3c6e71;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #d9d9d9;
}

.footer-contact i {
  font-size: 18px;
  color: #3c6e71;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.copyright {
  font-size: 13px;
  color: #d9d9d9;
}

@media (max-width: 1200px) {
  .main-title {
    font-size: 52px;
  }
  
  .heading-xl {
    font-size: 44px;
  }
  
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
  
  .large-box {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
  }
  
  .medium-box:nth-of-type(2) {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
  }
  
  .medium-box:nth-of-type(3) {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
  }
  
  .small-box {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
  }
  
  .numbers-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 24px;
  }
  
  .main-nav a {
    font-size: 14px;
  }
  
  .hero-bento {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .promo-container {
    grid-template-columns: 1fr;
    padding: 50px;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #d9d9d9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .main-nav.active {
    max-height: 500px;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  
  .main-nav li {
    border-bottom: 1px solid #d9d9d9;
  }
  
  .main-nav a {
    display: block;
    padding: 12px 0;
  }
  
  .hero-area {
    padding: 60px 0;
  }
  
  .main-title {
    font-size: 40px;
  }
  
  .lead-text {
    font-size: 18px;
  }
  
  .courses-bento {
    padding: 70px 0;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about-split,
  .numbered-grid,
  .team-section,
  .reviews-area {
    padding: 70px 0;
  }
  
  .heading-xl {
    font-size: 36px;
  }
  
  .numbers-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-block {
    padding: 60px 0;
  }
  
  .promo-container {
    padding: 40px 30px;
  }
  
  .promo-heading {
    font-size: 34px;
  }
  
  .promo-right {
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
  }
  
  .promo-metric {
    min-width: 140px;
  }
  
  .cookie-wrap {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 36px;
  }
  
  .main-title {
    font-size: 32px;
  }
  
  .lead-text {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accent,
  .btn-outline,
  .btn-light-outline {
    width: 100%;
    text-align: center;
  }
  
  .heading-xl {
    font-size: 30px;
  }
  
  .bento-item {
    padding: 28px;
  }
  
  .box-title {
    font-size: 24px;
  }
  
  .para-lg {
    font-size: 16px;
  }
  
  .number-display {
    font-size: 56px;
  }
  
  .number-card {
    padding: 32px 24px;
  }
  
  .promo-heading {
    font-size: 28px;
  }
  
  .promo-description {
    font-size: 16px;
  }
  
  .review-box {
    padding: 28px;
  }
}

.about-intro-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.intro-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.small-label-tag {
  display: inline-block;
  background: #3c6e71;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-headline-big {
  font-size: 58px;
  line-height: 1.1;
  color: #353535;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.intro-para-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #353535;
  opacity: 0.9;
}

.intro-image-zone {
  position: relative;
}

.intro-hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.floating-stat-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.stat-card-number {
  font-size: 42px;
  font-weight: 700;
  color: #3c6e71;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 6px;
}

.stat-card-text {
  font-size: 14px;
  color: #353535;
  opacity: 0.8;
}

.mission-overlap-section {
  padding: 90px 0;
  background: #ffffff;
}

.mission-asymmetric {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-title-bold {
  font-size: 48px;
  line-height: 1.15;
  color: #353535;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.mission-description {
  font-size: 17px;
  line-height: 1.7;
  color: #353535;
  margin-bottom: 24px;
}

.mission-right-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.principle-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.principle-card:hover {
  border-color: #3c6e71;
}

.offset-card {
  margin-left: 40px;
}

.principle-icon {
  width: 48px;
  height: 48px;
  background: #3c6e71;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.principle-name {
  font-size: 22px;
  color: #353535;
  margin-bottom: 12px;
}

.principle-text {
  font-size: 16px;
  line-height: 1.65;
  color: #353535;
  opacity: 0.9;
}

.stats-impact-zone {
  padding: 70px 0;
  background: #353535;
}

.stats-flex-row {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}

.stat-big-box {
  text-align: center;
}

.stat-number-huge {
  font-size: 64px;
  font-weight: 700;
  color: #3c6e71;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.stat-label-below {
  font-size: 16px;
  color: #d9d9d9;
}

.values-presentation {
  padding: 90px 0;
  background: #f8f9fa;
}

.values-header-center {
  text-align: center;
  margin-bottom: 60px;
}

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

.value-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #3c6e71;
}

.value-icon-circle {
  width: 56px;
  height: 56px;
  background: #3c6e71;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.value-heading {
  font-size: 24px;
  color: #353535;
  margin-bottom: 14px;
}

.value-paragraph {
  font-size: 16px;
  line-height: 1.65;
  color: #353535;
  opacity: 0.9;
}

.team-photo-feature {
  padding: 90px 0;
  background: #ffffff;
}

.team-split-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.team-feature-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.team-info-text {
  font-size: 17px;
  line-height: 1.7;
  color: #353535;
  margin-bottom: 24px;
}

.mentors-hero-intro {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  text-align: center;
}

.mentors-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.mentors-main-heading {
  font-size: 62px;
  line-height: 1.1;
  color: #353535;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.mentors-intro-text {
  font-size: 20px;
  line-height: 1.7;
  color: #353535;
  opacity: 0.9;
}

.featured-mentor-spotlight {
  padding: 80px 0;
  background: #ffffff;
}

.spotlight-layout-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.spotlight-image-block {
  position: relative;
}

.spotlight-mentor-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.spotlight-badge-overlay {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #3c6e71;
  padding: 12px 24px;
  border-radius: 8px;
}

.badge-text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mentor-spotlight-name {
  font-size: 44px;
  color: #353535;
  margin-bottom: 8px;
  line-height: 1.2;
}

.mentor-spotlight-role {
  font-size: 18px;
  color: #3c6e71;
  margin-bottom: 28px;
  font-weight: 600;
}

.mentor-bio-para {
  font-size: 17px;
  line-height: 1.7;
  color: #353535;
  margin-bottom: 28px;
}

.mentor-expertise-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.expertise-tag {
  background: #f8f9fa;
  color: #353535;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.mentor-stats-inline {
  display: flex;
  gap: 40px;
}

.stat-inline-item {
  text-align: left;
}

.stat-inline-num {
  font-size: 38px;
  font-weight: 700;
  color: #3c6e71;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 6px;
}

.stat-inline-label {
  font-size: 14px;
  color: #353535;
  opacity: 0.8;
}

.mentors-grid-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-centered-title {
  font-size: 48px;
  text-align: center;
  color: #353535;
  margin-bottom: 60px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.mentors-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mentor-profile-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mentor-profile-card:hover {
  border-color: #3c6e71;
}

.mentor-card-photo {
  width: 100%;
  object-fit: cover;
  display: block;
}

.mentor-card-content {
  padding: 32px;
}

.dark-card-variant {
  background: #353535;
}

.dark-card-variant .mentor-card-content {
  color: #ffffff;
}

.dark-card-variant .mentor-card-name,
.dark-card-variant .mentor-card-description {
  color: #ffffff;
}

accent-card-variant {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
}

.accent-card-variant .mentor-card-content {
  color: #ffffff;
}

.accent-card-variant .mentor-card-name,
.accent-card-variant .mentor-card-description {
  color: #ffffff;
}

.mentor-icon-large {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.mentor-card-name {
  font-size: 24px;
  color: #353535;
  margin-bottom: 6px;
  line-height: 1.2;
}

.mentor-card-position {
  font-size: 15px;
  color: #3c6e71;
  margin-bottom: 16px;
  font-weight: 600;
}

.accent-card-variant .mentor-card-position {
  color: rgba(255,255,255,0.9);
}

.mentor-card-description {
  font-size: 15px;
  line-height: 1.65;
  color: #353535;
  margin-bottom: 20px;
  opacity: 0.9;
}

.mentor-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-small {
  background: #f8f9fa;
  color: #353535;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.dark-card-variant .tag-small {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
}

.accent-card-variant .tag-small {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.mentorship-approach-block {
  padding: 90px 0;
  background: #ffffff;
}

.approach-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.approach-description {
  font-size: 17px;
  line-height: 1.7;
  color: #353535;
  margin-bottom: 24px;
}

.approach-feature-box {
  background: #f8f9fa;
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.approach-feature-box:hover {
  border-color: #3c6e71;
}

.feature-box-icon {
  width: 48px;
  height: 48px;
  background: #3c6e71;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-box-title {
  font-size: 20px;
  color: #353535;
  margin-bottom: 10px;
}

.feature-box-text {
  font-size: 15px;
  line-height: 1.65;
  color: #353535;
  opacity: 0.9;
}

.courses-header-zone {
  padding: 100px 0 60px;
  background: #f8f9fa;
}

.courses-intro-content {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.courses-page-title {
  font-size: 62px;
  line-height: 1.1;
  color: #353535;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.courses-page-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: #353535;
  opacity: 0.9;
}

.filter-tabs-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tab {
  background: #ffffff;
  color: #353535;
  border: 2px solid #e0e0e0;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  border-color: #3c6e71;
}

.active-tab {
  background: #3c6e71;
  color: #ffffff;
  border-color: #3c6e71;
}

.courses-catalog-display {
  padding: 80px 0;
  background: #ffffff;
}

.courses-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.course-card-item {
  background: #f8f9fa;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.course-card-item:hover {
  border-color: #3c6e71;
}

.large-card-variant {
  grid-column: span 2;
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  color: #ffffff;
  border: none;
}

.large-card-variant .course-card-title,
.large-card-variant .course-card-description,
.large-card-variant .meta-detail-item {
  color: #ffffff;
}

.course-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.course-level-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.beginner-badge {
  background: #d9d9d9;
  color: #353535;
}

.intermediate-badge {
  background: #3c6e71;
  color: #ffffff;
}

.advanced-badge {
  background: #284b63;
  color: #ffffff;
}

.large-card-variant .course-level-badge {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

.course-duration-info {
  font-size: 13px;
  color: #353535;
  opacity: 0.8;
}

.large-card-variant .course-duration-info {
  color: #ffffff;
  opacity: 0.9;
}

.course-card-title {
  font-size: 26px;
  color: #353535;
  margin-bottom: 16px;
  line-height: 1.2;
}

.course-card-description {
  font-size: 16px;
  line-height: 1.65;
  color: #353535;
  margin-bottom: 24px;
  opacity: 0.9;
}

.course-highlight-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}

.highlight-stat {
  text-align: left;
}

.highlight-number {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 6px;
}

.highlight-label {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.9;
}

.course-meta-details {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  font-size: 14px;
}

.meta-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #353535;
  opacity: 0.85;
}

.meta-detail-item .material-icons {
  font-size: 18px;
}

.large-card-variant .meta-detail-item .material-icons {
  color: #ffffff;
}

.course-topics-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.topic-pill {
  background: #ffffff;
  color: #353535;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.large-card-variant .topic-pill {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.course-enroll-btn {
  background: #3c6e71;
  color: #ffffff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  margin-top: auto;
}

.course-enroll-btn:hover {
  background: #284b63;
}

.accent-btn-variant {
  background: #ffffff;
  color: #3c6e71;
}

.accent-btn-variant:hover {
  background: #f8f9fa;
}

.learning-paths-overview {
  padding: 90px 0;
  background: #f8f9fa;
}

.section-centered-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #353535;
  opacity: 0.9;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.paths-row-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.learning-path-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.learning-path-box:hover {
  border-color: #3c6e71;
}

.accent-path-box {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  color: #ffffff;
  border: none;
}

.accent-path-box .path-box-title,
.accent-path-box .path-box-text,
.accent-path-box .path-course-count {
  color: #ffffff;
}

.path-icon {
  width: 56px;
  height: 56px;
  background: #3c6e71;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.accent-path-box .path-icon {
  background: rgba(255,255,255,0.2);
}

.path-box-title {
  font-size: 24px;
  color: #353535;
  margin-bottom: 14px;
}

.path-box-text {
  font-size: 16px;
  line-height: 1.65;
  color: #353535;
  margin-bottom: 24px;
  opacity: 0.9;
}

.path-course-count {
  font-size: 14px;
  color: #3c6e71;
  font-weight: 600;
}

.accent-path-box .path-course-count {
  color: rgba(255,255,255,0.9);
}

.enrollment-info-block {
  padding: 90px 0;
  background: #ffffff;
}

.enrollment-two-col-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.enrollment-explanation {
  font-size: 17px;
  line-height: 1.7;
  color: #353535;
  margin-bottom: 24px;
}

.enrollment-detail-row {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.enrollment-detail-row:hover {
  border-color: #3c6e71;
}

.detail-icon-circle {
  width: 48px;
  height: 48px;
  background: #3c6e71;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.detail-text-block {
  flex: 1;
}

.detail-heading {
  font-size: 18px;
  color: #353535;
  margin-bottom: 6px;
}

.detail-description {
  font-size: 15px;
  line-height: 1.65;
  color: #353535;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .hero-headline-big,
  .mentors-main-heading,
  .courses-page-title {
    font-size: 50px;
  }
  
  .section-title-bold {
    font-size: 40px;
  }
  
  .mentor-spotlight-name {
    font-size: 38px;
  }
  
  .courses-masonry-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  
  .large-card-variant {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .intro-hero-grid,
  .mission-asymmetric,
  .team-split-reverse,
  .spotlight-layout-asymmetric,
  .approach-two-col,
  .enrollment-two-col-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .offset-card {
    margin-left: 0;
  }
  
  .stats-flex-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .values-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .mentors-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .paths-row-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-headline-big,
  .mentors-main-heading,
  .courses-page-title {
    font-size: 38px;
  }
  
  .section-title-bold {
    font-size: 32px;
  }
  
  .mentor-spotlight-name {
    font-size: 32px;
  }
  
  .intro-para-lead,
  .mentors-intro-text {
    font-size: 17px;
  }
  
  .about-intro-hero,
  .mission-overlap-section,
  .values-presentation,
  .team-photo-feature,
  .featured-mentor-spotlight,
  .mentors-grid-section,
  .mentorship-approach-block,
  .courses-catalog-display,
  .learning-paths-overview,
  .enrollment-info-block {
    padding: 70px 0;
  }
  
  .stats-impact-zone {
    padding: 60px 0;
  }
  
  .courses-header-zone {
    padding: 80px 0 50px;
  }
  
  .mentors-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .courses-masonry-grid {
    grid-template-columns: 1fr;
  }
  
  .course-highlight-stats {
    flex-direction: row;
  }
  
  .mentor-stats-inline {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline-big,
  .mentors-main-heading,
  .courses-page-title {
    font-size: 32px;
  }
  
  .section-title-bold {
    font-size: 28px;
  }
  
  .principle-card,
  .value-item,
  .approach-feature-box,
  .course-card-item,
  .learning-path-box {
    padding: 28px;
  }
  
  .floating-stat-card {
    left: 20px;
    bottom: 20px;
    padding: 20px 24px;
  }
  
  .stat-card-number {
    font-size: 36px;
  }
  
  .filter-tabs-row {
    flex-direction: column;
  }
  
  .filter-tab {
    width: 100%;
    text-align: center;
  }
  
  .course-highlight-stats {
    flex-direction: column;
    gap: 20px;
  }
}

.workshop-hero {
  padding: 90px 0 120px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.hero-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
gap: 70px;
  align-items: center;
}

.hero-content-ws {
  position: relative;
}

.workshop-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3c6e71;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ws-title {
  font-size: 58px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ws-intro {
font-size: 19px;
  color: #353535;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}

.ws-meta-row {
  display: flex;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.stat-icon-box {
  width: 44px;
  height: 44px;
  background: #3c6e71;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.stat-big {
  font-size: 32px;
  font-weight: 700;
  color: #353535;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-small {
  font-size: 13px;
  color: #353535;
  opacity: 0.8;
}

.ws-breakdown {
  padding: 100px 0;
  background: #ffffff;
}

.section-title-ws {
  font-size: 48px;
  color: #353535;
  margin-bottom: 48px;
  text-align: center;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.breakdown-card {
  padding: 40px 36px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s ease;
}

.breakdown-card:hover {
  transform: translateY(-4px);
}

.accent-card {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  color: #ffffff;
}

.dark-card {
  background: #353535;
  color: #ffffff;
}

.light-card {
  background: #f8f9fa;
  color: #353535;
  border: 1px solid #e0e0e0;
}

.card-num {
  font-size: 72px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.breakdown-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.breakdown-text {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
  opacity: 0.9;
}

.deliverable-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.light-card .deliverable-tag {
  background: #353535;
  color: #ffffff;
}

.ws-schedule {
  padding: 100px 0;
  background: #f8f9fa;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.schedule-heading {
  font-size: 44px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.2;
}

.schedule-desc {
  font-size: 17px;
  color: #353535;
  line-height: 1.7;
  opacity: 0.9;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-day {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 28px;
}

.day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-dot {
  width: 16px;
  height: 16px;
  background: #3c6e71;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.marker-line {
  width: 2px;
  flex-grow: 1;
  background: #d9d9d9;
  margin-top: 8px;
}

.timeline-day:last-child .marker-line {
  display: none;
}

.day-content {
  padding-bottom: 48px;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.day-label {
  font-size: 13px;
  color: #3c6e71;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.day-hours {
  font-size: 13px;
  color: #353535;
  opacity: 0.6;
}

.day-title {
  font-size: 24px;
  color: #353535;
  margin-bottom: 12px;
}

.day-text {
  font-size: 16px;
  color: #353535;
  line-height: 1.65;
  opacity: 0.85;
}

.ws-includes {
  padding: 100px 0;
  background: #ffffff;
}

.section-title-center {
  font-size: 48px;
  color: #353535;
  margin-bottom: 56px;
  text-align: center;
}

.includes-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 24px;
}

.include-box {
  padding: 36px;
  border-radius: 16px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.include-box:hover {
  border-color: #3c6e71;
  background: #ffffff;
}

.box-large {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.box-medium:nth-of-type(2) {
  grid-column: 7 / 10;
  grid-row: 1 / 2;
}

.box-medium:nth-of-type(3) {
  grid-column: 10 / 13;
  grid-row: 1 / 2;
}

.box-small:nth-of-type(4) {
  grid-column: 7 / 10;
  grid-row: 2 / 3;
}

.box-small:nth-of-type(5) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
}

.include-icon {
  font-size: 40px;
  color: #3c6e71;
  margin-bottom: 20px;
}

.include-title {
  font-size: 22px;
  color: #353535;
  margin-bottom: 12px;
}

.include-text {
  font-size: 15px;
  color: #353535;
  line-height: 1.65;
  opacity: 0.85;
}

.ws-pricing {
  padding: 100px 0;
  background: #f8f9fa;
}

.pricing-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}

.pricing-heading {
  font-size: 46px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-text {
  font-size: 18px;
  color: #353535;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #353535;
}

.feature-item .material-icons {
  color: #3c6e71;
  font-size: 22px;
}

.price-card {
  background: #ffffff;
  padding: 44px 40px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.price-value {
  font-size: 64px;
  font-weight: 700;
  color: #353535;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.price-label {
  font-size: 15px;
  color: #353535;
  opacity: 0.7;
  margin-bottom: 16px;
}

.price-note {
  font-size: 14px;
  color: #3c6e71;
  font-weight: 600;
  margin-bottom: 28px;
  padding: 12px;
  background: rgba(60, 110, 113, 0.1);
  border-radius: 8px;
}

.btn-full {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.price-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #353535;
  opacity: 0.7;
}

.price-guarantee .material-icons {
  font-size: 18px;
  color: #3c6e71;
}

.events-hero {
  padding: 90px 0 80px;
  background: #f8f9fa;
}

.events-header-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
}

.event-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #353535;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #3c6e71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.events-main-title {
  font-size: 56px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.1;
}

.events-subtitle {
  font-size: 19px;
  color: #353535;
  line-height: 1.7;
  opacity: 0.9;
}

.stat-cluster {
  display: flex;
  gap: 32px;
}

.cluster-item {
  text-align: left;
}

.cluster-num {
  font-size: 52px;
  font-weight: 700;
  color: #3c6e71;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.cluster-label {
  font-size: 14px;
  color: #353535;
  opacity: 0.7;
}

.events-list {
  padding: 80px 0;
  background: #ffffff;
}

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

.event-card {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: #3c6e71;
}

.featured-event {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
}

.event-image-wrapper {
  position: relative;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: #353535;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.live-badge {
  background: #3c6e71;
  color: #ffffff;
}

.event-details {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.event-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3c6e71;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.event-date-row .material-icons {
  font-size: 18px;
}

.event-title {
  font-size: 26px;
  color: #353535;
  margin-bottom: 16px;
  line-height: 1.3;
}

.event-description {
  font-size: 16px;
  color: #353535;
  line-height: 1.65;
  margin-bottom: 24px;
  opacity: 0.85;
}

.event-meta-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #353535;
  opacity: 0.7;
}

.event-speaker,
.event-duration {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-speaker .material-icons,
.event-duration .material-icons {
  font-size: 18px;
}

.past-events {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title-simple {
  font-size: 44px;
  color: #353535;
  margin-bottom: 48px;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.past-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.past-card:hover {
  border-color: #3c6e71;
}

.past-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.past-date {
  font-size: 13px;
  color: #353535;
  opacity: 0.6;
}

.past-views {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #353535;
  opacity: 0.6;
}

.past-views .material-icons {
  font-size: 16px;
}

.past-title {
  font-size: 20px;
  color: #353535;
  margin-bottom: 12px;
}

.past-desc {
  font-size: 14px;
  color: #353535;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.8;
}

.past-link {
  color: #3c6e71;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s;
}

.past-link:hover {
  opacity: 0.7;
}

.event-cta {
  padding: 80px 0;
  background: #ffffff;
}

.cta-box-event {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  padding: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-title-event {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-text-event {
  font-size: 17px;
  color: #ffffff;
  opacity: 0.95;
}

.testimonials-hero {
  padding: 90px 0 60px;
  background: #f8f9fa;
}

.testimonials-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-main-title {
  font-size: 60px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.1;
}

.testimonials-intro {
  font-size: 20px;
  color: #353535;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.star-filled {
  color: #3c6e71;
  font-size: 24px;
}

.rating-text {
  font-size: 15px;
  color: #353535;
  opacity: 0.7;
}

.testimonials-masonry {
  padding: 80px 0;
  background: #ffffff;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-item {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  border-color: #3c6e71;
  background: #ffffff;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.student-avatar {
  width: 48px;
  height: 48px;
  background: #3c6e71;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.student-name {
  font-size: 16px;
  font-weight: 600;
  color: #353535;
}

.student-role {
  font-size: 13px;
  color: #353535;
  opacity: 0.6;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating .material-icons {
  font-size: 18px;
  color: #3c6e71;
}

.testimonial-content {
  font-size: 15px;
  color: #353535;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-course {
  font-size: 13px;
  color: #3c6e71;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.stats-proof {
  padding: 80px 0;
  background: #353535;
}

.stats-title {
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 56px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-block {
  text-align: center;
}

.stat-number {
  font-size: 72px;
  font-weight: 700;
  color: #3c6e71;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.8;
}

.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-card {
  background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-heading {
  font-size: 44px;
  color: #353535;
  margin-bottom: 16px;
}

.contact-text {
  font-size: 18px;
  color: #353535;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0.85;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-info-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #353535;
  opacity: 0.7;
}

.contact-email {
  color: #3c6e71;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.contact-email:hover {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .hero-asymmetric {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .schedule-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .includes-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }

  .box-large {
    grid-column: 1 / 7;
    grid-row: auto;
  }

  .box-medium:nth-of-type(2),
  .box-medium:nth-of-type(3),
  .box-small:nth-of-type(4),
  .box-small:nth-of-type(5) {
    grid-column: 1 / 7;
    grid-row: auto;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }

  .events-header-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-event {
    grid-template-columns: 1fr;
  }

  .past-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ws-title,
  .events-main-title,
  .testimonials-main-title {
    font-size: 40px;
  }

  .section-title-ws,
  .section-title-center,
  .schedule-heading,
  .pricing-heading,
  .section-title-simple,
  .stats-title,
  .contact-heading {
    font-size: 32px;
  }

  .ws-meta-row {
    flex-direction: column;
    gap: 12px;
  }

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

  .featured-event {
    grid-column: 1;
  }

  .cta-box-event {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

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

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

  .stats-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-card {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .ws-title {
    font-size: 32px;
  }

  .card-num {
    font-size: 56px;
  }

  .breakdown-title {
    font-size: 22px;
  }

  .event-details {
    padding: 28px;
  }

  .event-title {
    font-size: 22px;
  }

  .cluster-num {
    font-size: 40px;
  }

  .stat-number {
    font-size: 56px;
  }

  .cta-title-event {
    font-size: 28px;
  }
}
 

.meta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8f9fa;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #353535;
  border: 1px solid #e0e0e0;
}

.hero-visual-ws {
  position: relative;
}

.ws-hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.floating-stat {
  position: absolute;
bottom: -30px;
  left: 30px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
   flex-wrap: wrap;
  margin-bottom: 36px;
}

.contact-form-section {
  padding: 100px 0;
  background: #ffffff;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.form-left {
  position: sticky;
  top: 120px;
}

.form-heading {
  font-size: 48px;
  color: #353535;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.form-subtext {
  font-size: 18px;
  color: #353535;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}

.form-right {
  background: #f8f9fa;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: #353535;
  text-transform: lowercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #353535;
  background: #ffffff;
  transition: all 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #3c6e71;
  box-shadow: 0 0 0 3px rgba(60, 110, 113, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23353535' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit-btn {
  background: #3c6e71;
  color: #ffffff;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: lowercase;
}

.form-submit-btn:hover {
  background: #284b63;
  box-shadow: 0 8px 24px rgba(60, 110, 113, 0.3);
}

.form-submit-btn:active {
  transform: translateY(1px);
}

@media (max-width: 1024px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .form-left {
    position: static;
  }
  
  .form-heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 70px 0;
  }
  
  .form-right {
    padding: 36px 28px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .form-heading {
    font-size: 34px;
  }
  
  .form-subtext {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .form-right {
    padding: 28px 20px;
  }
  
  .form-heading {
    font-size: 28px;
  }
  
  .application-form {
    gap: 20px;
  }
}

.thankyou-body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.thank-you-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 48px;
  color: #3c6e71;
  font-weight: 700;
}

.thank-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.thank-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
  color: #ffffff;
}

.home-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #3c6e71;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: lowercase;
}

.home-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .thank-you-container {
    padding: 50px 30px;
  }
  
  .thank-heading {
    font-size: 36px;
  }
  
  .thank-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .thank-you-container {
    padding: 40px 24px;
  }
  
  .thank-heading {
    font-size: 30px;
  }
  
  .success-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
  }
}

.error-icon {
  background: rgba(220, 53, 69, 0.9) !important;
  color: #ffffff !important;
}

.articles-hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #d9d9d9;
}

.hero-content-article {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.articles-main-title {
  font-size: 68px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.articles-subtitle {
  font-size: 21px;
  color: #353535;
  opacity: 0.85;
  line-height: 1.6;
}

.articles-mosaic {
  padding: 80px 0 100px;
  background: #ffffff;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 380px);
  gap: 28px;
}

.mosaic-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
}

.mosaic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.large-card {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.medium-card:nth-of-type(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}

.medium-card:nth-of-type(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}

.small-card:nth-of-type(4) {
  grid-column: 1 / 7;
  grid-row: 3 / 4;
}

.small-card:nth-of-type(5) {
  grid-column: 7 / 13;
  grid-row: 3 / 4;
}

.dark-card {
  background: #353535;
  border: none;
}

.dark-card .card-heading,
.dark-card .card-excerpt {
  color: #ffffff;
}

.accent-card {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  border: none;
}

.accent-card .card-heading,
.accent-card .card-excerpt {
  color: #ffffff;
}

.card-link-full {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card-image {
  height: 55%;
  overflow: hidden;
}

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

.mosaic-card:hover .card-image img {
  transform: scale(1.08);
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  display: inline-block;
  padding: 6px 14px;
  background: #3c6e71;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.card-category.light {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

.card-heading {
  font-size: 26px;
  color: #353535;
  margin-bottom: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.card-excerpt {
  font-size: 15px;
  color: #353535;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: auto;
}

.card-meta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #353535;
  opacity: 0.7;
}

.read-time .material-icons {
  font-size: 16px;
}

.newsletter-block {
  padding: 80px 0;
  background: #f8f9fa;
}

.newsletter-inner {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.newsletter-heading {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.newsletter-desc {
  font-size: 17px;
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255,255,255,0.15);
}

.newsletter-btn {
  padding: 16px 32px;
  background: #ffffff;
  color: #3c6e71;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.placeholder-section {
  padding: 160px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.placeholder-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.placeholder-label {
  display: inline-block;
  padding: 8px 18px;
  background: #3c6e71;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.placeholder-title {
  font-size: 56px;
  color: #353535;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.placeholder-text {
  font-size: 19px;
  color: #353535;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 40px;
}

.placeholder-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.article-magazine-layout {
  background: #ffffff;
}

.magazine-hero-full {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
}

.hero-text-box {
  max-width: 800px;
}

.breadcrumb-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.breadcrumb-back:hover {
  opacity: 1;
}

.overlay-category {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.overlay-title {
  font-size: 62px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.overlay-lead {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.95;
}

.overlay-meta {
  display: flex;
  gap: 24px;
}

.overlay-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.9;
}

.overlay-meta .material-icons {
  font-size: 18px;
}

.magazine-body {
  padding: 100px 0;
}

.magazine-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
}

.content-main-column {
  max-width: 780px;
}

.pullquote-block {
  background: #f8f9fa;
  padding: 40px;
  border-left: 4px solid #3c6e71;
  margin: 60px 0;
  position: relative;
}

.pullquote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  color: #3c6e71;
  opacity: 0.2;
}

.pullquote-text {
  font-size: 24px;
  line-height: 1.5;
  color: #353535;
  font-weight: 500;
  font-style: italic;
}

.text-section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  color: #353535;
  margin-bottom: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.body-text {
  font-size: 18px;
  color: #353535;
  line-height: 1.8;
  margin-bottom: 20px;
}

.image-embed-full {
  margin: 70px 0;
}

.embed-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.image-caption {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: #353535;
  opacity: 0.7;
  text-align: center;
  font-style: italic;
}

.numbered-list-custom {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.list-item-num {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
}

.item-number {
  font-size: 48px;
  font-weight: 700;
  color: #3c6e71;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.item-title {
  font-size: 24px;
  color: #353535;
  margin-bottom: 12px;
  font-weight: 700;
}

.item-text {
  font-size: 17px;
  color: #353535;
  line-height: 1.7;
}

.highlight-box {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  padding: 50px;
  border-radius: 16px;
  margin: 60px 0;
}

.highlight-heading {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 19px;
  color: #ffffff;
  line-height: 1.7;
  opacity: 0.95;
}

.content-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #f8f9fa;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.card-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #3c6e71;
  font-weight: 600;
  margin-bottom: 16px;
}

.author-name {
  font-size: 20px;
  color: #353535;
  margin-bottom: 12px;
  font-weight: 600;
}

.author-bio {
  font-size: 14px;
  color: #353535;
  line-height: 1.6;
  opacity: 0.8;
}

.related-link {
  display: block;
  color: #353535;
  text-decoration: none;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s;
}

.related-link:last-child {
  border-bottom: none;
}

.related-link:hover {
  color: #3c6e71;
}

.article-minimal-layout {
  background: #ffffff;
}

.minimal-hero {
  padding: 80px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.minimal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.minimal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  color: #3c6e71;
  text-decoration: none;
  margin-bottom: 32px;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
}

.minimal-back:hover {
  background: #3c6e71;
  color: #ffffff;
  border-color: #3c6e71;
}

.minimal-hero-content {
  text-align: center;
}

.minimal-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #3c6e71;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.minimal-h1 {
  font-size: 58px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.minimal-intro {
  font-size: 22px;
  color: #353535;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 28px;
}

.minimal-meta-row {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #353535;
  opacity: 0.7;
}

.meta-item .material-icons {
  font-size: 18px;
}

.minimal-body {
  padding: 100px 0;
}

.principle-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 40px;
  position: relative;
  transition: all 0.3s;
}

.principle-card:hover {
  border-color: #3c6e71;
  transform: translateX(8px);
}

.principle-num {
  position: absolute;
  top: -20px;
  left: 40px;
  background: #3c6e71;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.principle-title {
  font-size: 32px;
  color: #353535;
  margin-bottom: 20px;
  font-weight: 700;
}

.principle-text {
  font-size: 18px;
  color: #353535;
  line-height: 1.8;
  margin-bottom: 20px;
}

.insight-banner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  padding: 40px;
  border-radius: 16px;
  margin: 60px 0;
  align-items: center;
}

.insight-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-icon .material-icons {
  font-size: 36px;
  color: #ffffff;
}

.insight-heading {
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  font-weight: 600;
}

.insight-text {
  font-size: 19px;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.95;
}

.closing-block {
  background: #f8f9fa;
  padding: 60px;
  border-radius: 16px;
  margin-top: 60px;
  border-left: 4px solid #3c6e71;
}

.closing-title {
  font-size: 36px;
  color: #353535;
  margin-bottom: 24px;
  font-weight: 700;
}

.closing-text {
  font-size: 18px;
  color: #353535;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-split-layout {
  background: #ffffff;
}

.split-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.split-hero-left {
  position: relative;
  overflow: hidden;
}

.split-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.split-hero-right {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  padding: 80px 60px;
}

.split-hero-text {
  max-width: 600px;
}

.split-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3c6e71;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 500;
  transition: gap 0.3s;
}

.split-back-link:hover {
  gap: 12px;
}

.split-category {
  display: inline-block;
  padding: 8px 16px;
  background: #3c6e71;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.split-main-title {
  font-size: 56px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.split-lead-text {
  font-size: 20px;
  color: #353535;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 28px;
}

.split-meta-info {
  display: flex;
  gap: 24px;
}

.meta-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #353535;
  opacity: 0.7;
}

.meta-box .material-icons {
  font-size: 18px;
}

.split-content-area {
  padding: 100px 0;
}

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

.zigzag-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.zigzag-item.reverse {
  direction: rtl;
}

.zigzag-item.reverse > * {
  direction: ltr;
}

.zigzag-heading {
  font-size: 36px;
  color: #353535;
  margin-bottom: 24px;
  font-weight: 700;
}

.zigzag-p {
  font-size: 18px;
  color: #353535;
  line-height: 1.8;
  margin-bottom: 20px;
}

.color-example-box {
  height: 280px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.color-label {
  font-size: 32px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.color-meaning {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.9;
}

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

.callout-content {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid #3c6e71;
}

.callout-icon {
  width: 60px;
  height: 60px;
  background: #3c6e71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
}

.callout-text {
  font-size: 20px;
  color: #353535;
  line-height: 1.7;
  align-self: center;
}

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

.checklist-title {
  font-size: 42px;
  color: #353535;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.check-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.check-item:hover {
  border-color: #3c6e71;
  transform: translateX(8px);
}

.check-icon {
  font-size: 36px;
  color: #3c6e71;
}

.check-text {
  font-size: 17px;
  color: #353535;
  line-height: 1.7;
  align-self: center;
}

.final-thought {
  background: #353535;
  padding: 60px;
  border-radius: 16px;
  margin-top: 80px;
}

.final-title {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 28px;
  font-weight: 700;
}

.final-p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

.article-dark-layout {
  background: #353535;
}

.dark-hero-full {
  background: linear-gradient(135deg, #353535 0%, #284b63 100%);
  padding: 100px 0;
  position: relative;
}

.dark-hero-overlay {
  position: relative;
  z-index: 1;
}

.dark-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 32px;
  opacity: 0.9;
  transition: all 0.3s;
}

.dark-back-btn:hover {
  opacity: 1;
  gap: 14px;
}

.dark-hero-wrapper {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.dark-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.dark-title {
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.dark-subtitle {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 28px;
}

.dark-meta-line {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.dark-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.9;
}

.dark-meta-item .material-icons {
  font-size: 18px;
}

.dark-body-section {
  background: #ffffff;
  padding: 100px 0;
}

.dark-body-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stack-card {
  padding: 50px;
  border-radius: 16px;
  transition: all 0.3s;
}

.stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.accent-card-style {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  color: #ffffff;
}

.light-card-style {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
}

.card-number {
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 24px;
}

.dark-num {
  color: rgba(60,110,113,0.2);
}

.card-h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
}

.dark-h2 {
  color: #353535;
}

.card-p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

.dark-p {
  color: #353535;
  opacity: 1;
}

.card-highlight {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.15);
  padding: 24px;
  border-radius: 12px;
  margin-top: 28px;
  align-items: center;
}

.card-highlight .material-icons {
  font-size: 32px;
  color: #ffffff;
  flex-shrink: 0;
}

.card-highlight p {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 60px 0;
}

.comparison-item {
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.wrong-way {
  background: #ffffff;
  border: 2px solid #d32f2f;
}

.right-way {
  background: #ffffff;
  border: 2px solid #2e7d32;
}

.comparison-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.wrong-way .comparison-icon {
  background: #d32f2f;
  color: #ffffff;
}

.right-way .comparison-icon {
  background: #2e7d32;
  color: #ffffff;
}

.comparison-title {
  font-size: 20px;
  color: #353535;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-text {
  font-size: 16px;
  color: #353535;
  line-height: 1.7;
}

.article-timeline-layout {
  background: #ffffff;
}

.timeline-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid #e0e0e0;
}

.timeline-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}

.timeline-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  color: #3c6e71;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
}

.timeline-back:hover {
  background: #3c6e71;
  color: #ffffff;
  border-color: #3c6e71;
}

.timeline-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #3c6e71;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.timeline-main-h1 {
  font-size: 54px;
  color: #353535;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.timeline-intro-text {
  font-size: 20px;
  color: #353535;
  line-height: 1.6;
  opacity: 0.85;
}

.timeline-header-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.timeline-header-meta {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 24px;
}

.timeline-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #353535;
  opacity: 0.7;
}

.timeline-meta-item .material-icons {
  font-size: 18px;
}

.timeline-body {
  padding: 100px 0;
}

.timeline-body-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-dot {
  width: 24px;
  height: 24px;
  background: #3c6e71;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, #3c6e71 0%, transparent 100%);
  margin-top: 12px;
}

.last-dot + .step-line {
  display: none;
}

.step-heading {
  font-size: 36px;
  color: #353535;
  margin-bottom: 24px;
  font-weight: 700;
}

.step-text {
  font-size: 18px;
  color: #353535;
  line-height: 1.8;
  margin-bottom: 20px;
}

.step-warning {
  display: flex;
  gap: 16px;
  background: #fff3e0;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ff9800;
  margin-top: 24px;
}

.step-warning .material-icons {
  color: #ff9800;
  font-size: 24px;
  flex-shrink: 0;
}

.step-warning p {
  font-size: 16px;
  color: #353535;
  line-height: 1.6;
  margin: 0;
}

.step-insight {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #3c6e71;
  margin-top: 24px;
}

.insight-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #3c6e71;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-insight p {
  font-size: 17px;
  color: #353535;
  line-height: 1.7;
  margin: 0;
}

.step-conclusion {
  background: linear-gradient(135deg, #3c6e71 0%, #284b63 100%);
  padding: 32px;
  border-radius: 12px;
  margin-top: 28px;
}

.step-conclusion p {
  font-size: 19px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

.approach-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 80px 0;
  grid-column: 1 / -1;
}

.approach-col {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s;
}

.approach-col:hover {
  border-color: #3c6e71;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.approach-icon {
  width: 70px;
  height: 70px;
  background: #3c6e71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: #ffffff;
}

.approach-title {
  font-size: 28px;
  color: #353535;
  margin-bottom: 16px;
  font-weight: 700;
}

.approach-desc {
  font-size: 16px;
  color: #353535;
  line-height: 1.7;
  opacity: 0.85;
}

@media (max-width: 1200px) {
  .articles-main-title {
    font-size: 56px;
  }

  .mosaic-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }

  .large-card {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
  }

  .medium-card:nth-of-type(2) {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
  }

  .medium-card:nth-of-type(3) {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
  }

  .small-card:nth-of-type(4) {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }

  .small-card:nth-of-type(5) {
    grid-column: 4 / 7;
    grid-row: 3 / 4;
  }

  .magazine-content-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .content-sidebar {
    display: none;
  }

  .split-hero-section {
    grid-template-columns: 1fr;
  }

  .split-hero-left {
    min-height: 400px;
  }

  .timeline-header-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .zigzag-item,
  .zigzag-item.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

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

  .approach-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .articles-hero {
    padding: 70px 0 50px;
  }

  .articles-main-title {
    font-size: 42px;
  }

  .articles-subtitle {
    font-size: 18px;
  }

  .articles-mosaic {
    padding: 60px 0 80px;
  }

  .mosaic-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .card-image {
    height: 220px;
  }

  .newsletter-inner {
    padding: 40px 30px;
  }

  .newsletter-heading {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .placeholder-section {
    padding: 100px 0;
  }

  .placeholder-title {
    font-size: 40px;
  }

  .placeholder-actions {
    flex-direction: column;
    width: 100%;
  }

  .magazine-hero-full {
    height: 60vh;
    min-height: 500px;
  }

  .overlay-title {
    font-size: 42px;
  }

  .overlay-lead {
    font-size: 18px;
  }

  .magazine-body {
    padding: 70px 0;
  }

  .pullquote-block {
    padding: 30px;
  }

  .pullquote-text {
    font-size: 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .body-text {
    font-size: 17px;
  }

  .numbered-list-custom {
    gap: 30px;
  }

  .list-item-num {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .item-number {
    font-size: 36px;
  }

  .minimal-h1 {
    font-size: 42px;
  }

  .minimal-intro {
    font-size: 19px;
  }

  .principle-card {
    padding: 40px 30px;
  }

  .principle-title {
    font-size: 26px;
  }

  .insight-banner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .insight-icon {
    margin: 0 auto;
  }

  .split-hero-right {
    padding: 60px 30px;
  }

  .split-main-title {
    font-size: 42px;
  }

  .zigzag-heading {
    font-size: 30px;
  }

  .color-example-box {
    height: 220px;
  }

  .checklist-title {
    font-size: 34px;
  }

  .check-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dark-title {
    font-size: 46px;
  }

  .stack-card {
    padding: 40px 30px;
  }

  .card-h2 {
    font-size: 30px;
  }

  .timeline-main-h1 {
    font-size: 42px;
  }

  .timeline-step {
    grid-template-columns: 30px 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }

  .step-heading {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .articles-main-title {
    font-size: 34px;
  }

  .card-content {
    padding: 24px;
  }

  .card-heading {
    font-size: 22px;
  }

  .newsletter-heading {
    font-size: 26px;
  }

  .placeholder-title {
    font-size: 32px;
  }

  .overlay-title {
    font-size: 34px;
  }

  .pullquote-text {
    font-size: 18px;
  }

  .minimal-h1 {
    font-size: 34px;
  }

  .split-main-title {
    font-size: 34px;
  }

  .dark-title {
    font-size: 38px;
  }

  .timeline-main-h1 {
    font-size: 34px;
  }
}

.legal-content {
  padding: 80px 0 100px;
  background: #ffffff;
  min-height: calc(100vh - 400px);
}

.legal-wrapper {
max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 36px;
  border-bottom: 2px solid #3c6e71;
}

.legal-title {
  font-size: 56px;
  color: #353535;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.legal-date {
  font-size: 15px;
  color: #3c6e71;
  font-weight: 500;
  text-transform: lowercase;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-section {
  position: relative;
}

.section-heading {
  font-size: 28px;
  color: #353535;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.legal-para {
  font-size: 17px;
  line-height: 1.8;
  color: #353535;
  margin-bottom: 20px;
}

.legal-para:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 60px 0 80px;
  }

  .legal-header {
    margin-bottom: 48px;
    padding-bottom: 28px;
  }

  .legal-title {
    font-size: 42px;
  }

  .legal-date {
    font-size: 14px;
  }

  .legal-body {
    gap: 40px;
  }

  .section-heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .legal-para {
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 50px 0 70px;
  }

  .legal-title {
    font-size: 34px;
  }

  .section-heading {
    font-size: 22px;
  }

  .legal-para {
    font-size: 15px;
  }
}