:root {
  /* Common */
  --primary: #00a651;
  --primary-dark: #008c44;
  --primary-light: #e6f6ee;
  --secondary: #20609e;
  --secondary-dark: #1a4d7a;
  --accent: #f9d423;
  --accent-dark: #e5c100;
  --danger: #e74c3c;
  --font-main: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Light Theme */
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --hero-bg: #f8f9fa;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --footer-bg: #f8f9fa;
  --card-bg: #ffffff;
  --icon-bg: #e6f6ee;
  --text-muted: #6c757d;
}

[data-theme="dark"] {
  /* Dark Theme */
  --white: #121212;
  --black: #ffffff;
  --gray-100: #1a1a1a;
  --gray-200: #2a2a2a;
  --gray-300: #3a3a3a;
  --gray-600: #b0b0b0;
  --gray-800: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.6);
  --primary-light: #1a2e24;
  --hero-bg: #121212;
  --nav-bg: rgba(18, 18, 18, 0.8);
  --footer-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --icon-bg: #1a2e24;
  --text-muted: #b0b0b0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes slide-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Language Visibility */
.lang-fr { display: none !important; }
html[lang="fr"] .lang-en { display: none !important; }
html[lang="fr"] .lang-fr { display: block !important; }
html[lang="fr"] span.lang-fr { display: inline !important; }
html[lang="fr"] .nav-list .lang-fr { display: inline !important; }

/* Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--primary);
  z-index: 1001;
  transition: width 0.1s;
}

/* Language Bar - REMOVED from fixed position */
.lang-bar {
  display: none;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--gray-800);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 100px;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.5rem 0; /* Slightly increased padding for larger logo */
  transition: var(--transition);
}

body.menu-open .header {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(15px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 1002;
}

/* Logo Integration & Blending */
.logo-image {
  height: 120px; /* Increased from 90px for even better visibility */
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo-image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Dark Mode Logo Optimization */
[data-theme="dark"] .logo-image img {
  /* Only invert if the logo content is primarily black/dark */
  filter: brightness(0) invert(1);
}

.logo:hover .logo-image img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Nav List Default (Desktop) */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary);
}

.nav-lang-item {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.nav-lang-switcher {
  display: flex;
  background: var(--gray-200);
  padding: 0.25rem;
  border-radius: 100px;
  border: 1px solid var(--gray-300);
}

.nav-lang-switcher .lang-btn {
  padding: 0.35rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--gray-800);
  font-weight: 700;
  font-size: 0.7rem;
  cursor: pointer;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-lang-switcher .lang-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Theme Toggle Button */
.nav-theme-item {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--gray-200);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.theme-btn:hover {
  background: var(--gray-300);
  transform: rotate(15deg);
}

[data-theme="dark"] .theme-btn i::before {
  content: "\f185"; /* Sun icon */
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--black);
  border-radius: 10px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-bg);
  width: 100%;
  overflow-x: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.shape-1 { width: 400px; height: 400px; background: rgba(0, 166, 81, 0.1); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: rgba(32, 96, 158, 0.1); bottom: -50px; left: -50px; }
.shape-3 { width: 200px; height: 200px; background: rgba(249, 212, 35, 0.1); top: 40%; left: 20%; }

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 166, 81, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 166, 81, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--black);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-hero-img {
  width: 80%;
  height: 80%;
  max-width: 300px;
  max-height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.floating-card {
  position: absolute;
  background: var(--card-bg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-2 { bottom: 15%; right: -5%; animation-delay: 2s; }

.floating-card i {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-card h4 { font-size: 0.9rem; margin-bottom: 0.1rem; }
.floating-card p { font-size: 0.75rem; color: var(--text-muted); }

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 3.5rem 2.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
}

.icon-green { background: var(--icon-bg); color: #00a651; }
.icon-blue { background: var(--icon-bg); color: #20609e; }
.icon-gold { background: var(--icon-bg); color: #f9d423; }
.icon-red { background: var(--icon-bg); color: #e74c3c; }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* Stats Section */
.stats {
  background: var(--secondary);
  color: #ffffff;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  color: var(--accent);
}

.stat-item p {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Event Cards Modern */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.event-card-modern {
  display: flex;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.event-card-modern:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.event-date {
  background: var(--primary);
  color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  min-width: 120px;
  transition: var(--transition);
}

.event-card-modern:hover .event-date {
  background: var(--secondary);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.event-date span {
  font-size: 2rem;
  line-height: 1;
}

.event-content {
  padding: 2rem;
}

.event-content h4, .event-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.event-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.text-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.text-link:hover {
  gap: 0.75rem;
}

/* CTA Modern */
.cta-modern {
  padding: 6rem 0;
}

.cta-content {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.page-about {
  --about-bg: #07110d;
  --about-panel: rgba(255, 255, 255, 0.08);
  --about-border: rgba(255, 255, 255, 0.16);
  --about-text: #f4f7f3;
  --about-muted: #c6d1c8;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 166, 81, 0.22), transparent 32rem),
    radial-gradient(circle at 82% 6%, rgba(249, 212, 35, 0.16), transparent 24rem),
    linear-gradient(145deg, #030806 0%, #07110d 48%, #11160f 100%);
  color: var(--about-text);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.page-about .header.scrolled {
  background: rgba(3, 8, 6, 0.86);
  border-bottom: 1px solid var(--about-border);
}

.page-about .nav-list a,
.page-about .theme-btn,
.page-about .lang-btn {
  color: var(--about-text);
}

.page-about .page-hero {
  background:
    linear-gradient(rgba(3, 8, 6, 0.55), rgba(7, 17, 13, 0.92)),
    radial-gradient(circle at center, rgba(0, 166, 81, 0.2), transparent 34rem);
  padding-bottom: 5rem;
}

.page-about .page-hero::before {
  opacity: 0.22;
}

.page-about .page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff, #f9d423 48%, #74d99f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.page-about .section {
  background: transparent;
}

.page-about .founder-story {
  padding-top: 3rem;
}

.page-about .about {
  padding-top: 3rem;
}

.page-about .feature-card {
  background: var(--about-panel);
  border-color: var(--about-border);
  color: var(--about-text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.page-about .feature-card p {
  color: var(--about-muted);
}

.page-about .card-heading,
.page-about .feature-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
}

.founder-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at top left, rgba(249, 212, 35, 0.18), transparent 18rem);
  border: 1px solid var(--about-border);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-copy p:last-child {
  margin-bottom: 0;
}

.page-about .founder-copy h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-about .founder-copy h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f9d423;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0.75rem 0 1.5rem;
}

.page-about .founder-copy p {
  color: var(--about-muted);
  font-size: 1.35rem;
  line-height: 1.75;
  max-width: 760px;
}

.page-about .footer-modern {
  background: rgba(3, 8, 6, 0.92);
  border-top-color: var(--about-border);
  color: var(--about-text);
}

.page-about .footer-bottom {
  border-top-color: var(--about-border);
}

[data-theme="light"] .page-about {
  --about-text: #14221a;
  --about-muted: #4d5b52;
  --about-border: rgba(20, 34, 26, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 166, 81, 0.12), transparent 30rem),
    radial-gradient(circle at 82% 6%, rgba(249, 212, 35, 0.14), transparent 24rem),
    linear-gradient(145deg, #f7f5ee 0%, #eef3ed 52%, #ffffff 100%);
  color: var(--about-text);
}

[data-theme="light"] .page-about .founder-content {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 245, 238, 0.9)),
    radial-gradient(circle at top left, rgba(249, 212, 35, 0.16), transparent 18rem);
  color: var(--about-text);
  border-color: rgba(20, 34, 26, 0.1);
  box-shadow: 0 35px 90px rgba(20, 34, 26, 0.18);
}

[data-theme="light"] .page-about .founder-copy h2,
[data-theme="light"] .page-about .feature-card h2 {
  color: var(--about-text);
}

[data-theme="light"] .page-about .founder-copy h3 {
  color: #9b7a08;
}

[data-theme="light"] .page-about .founder-copy p,
[data-theme="light"] .page-about .feature-card p {
  color: var(--about-muted);
  opacity: 1;
}

[data-theme="light"] .page-about .feature-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(20, 34, 26, 0.1);
  color: var(--about-text);
}

/* Cinematic Our Work Page */
.page-activities {
  --work-bg: #06100c;
  --work-panel: rgba(255, 255, 255, 0.075);
  --work-panel-strong: rgba(255, 255, 255, 0.11);
  --work-border: rgba(255, 255, 255, 0.16);
  --work-text: #f5f7f1;
  --work-muted: #c8d3c7;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 166, 81, 0.24), transparent 30rem),
    radial-gradient(circle at 84% 18%, rgba(249, 212, 35, 0.16), transparent 26rem),
    linear-gradient(145deg, #020705 0%, #06100c 48%, #10150e 100%);
  color: var(--work-text);
}

.page-activities .header.scrolled {
  background: rgba(2, 7, 5, 0.88);
  border-bottom: 1px solid var(--work-border);
}

.page-activities .nav-list a,
.page-activities .theme-btn,
.page-activities .lang-btn {
  color: var(--work-text);
}

.page-activities .page-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(2, 7, 5, 0.42), rgba(6, 16, 12, 0.92)),
    radial-gradient(circle at 52% 36%, rgba(0, 166, 81, 0.28), transparent 30rem),
    linear-gradient(135deg, #07130d, #10150e);
}

.page-activities .page-hero::before {
  opacity: 0.18;
}

.page-activities .page-title {
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.055em;
  background: linear-gradient(135deg, #ffffff 0%, #f9d423 46%, #78dea4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}

.page-kicker {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 1.25rem auto 0;
  color: var(--work-muted);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.4;
}

.page-activities .mission {
  background: transparent;
  padding: 5rem 0 7rem;
}

.work-intro {
  max-width: 880px;
  margin: 0 auto 4rem;
  padding: 0 0 2.5rem;
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  border-bottom: 1px solid var(--work-border);
}

.work-intro::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10rem;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f9d423, rgba(249, 212, 35, 0));
}

.work-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f9d423;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-activities .section-title {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--work-text);
  margin-bottom: 1rem;
}

.page-activities .section-subtitle {
  color: var(--work-muted);
  font-size: 1.35rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.work-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.work-signals span {
  padding: 0.55rem 1rem;
  border: 1px solid var(--work-border);
  border-radius: 999px;
  color: #f9d423;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1rem;
  font-weight: 700;
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.work-card {
  min-height: 360px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 18% 16%, rgba(0, 166, 81, 0.16), transparent 16rem);
  border: 1px solid var(--work-border);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color: var(--work-text);
  backdrop-filter: blur(16px);
}

.work-card:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 212, 35, 0.38);
}

.work-card:nth-child(1):hover,
.work-card:nth-child(4):hover,
.work-card:nth-child(2):hover,
.work-card:nth-child(5):hover {
  transform: translateY(-10px);
}

.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 212, 35, 0.16), transparent 42%);
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover::before {
  opacity: 1;
}

.work-card .feature-icon,
.work-card .work-number,
.work-card h3,
.work-card p {
  position: relative;
  z-index: 1;
}

.work-card .feature-icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #f9d423;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.work-number {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.work-card h3 {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.work-card p {
  color: var(--work-muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.page-activities .footer-modern {
  background: rgba(2, 7, 5, 0.92);
  border-top-color: var(--work-border);
  color: var(--work-text);
}

.page-activities .footer-bottom {
  border-top-color: var(--work-border);
}

.btn-white {
  background: #ffffff !important;
  color: #1a1a1a !important;
}

.btn-white span {
  color: #1a1a1a !important;
}

.btn-white:hover {
  background: var(--gray-100) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer Modern */
.footer-modern {
  background: var(--footer-bg);
  padding: 6rem 0 0;
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p { color: var(--text-muted); margin-bottom: 2rem; }

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-200);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-links a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact p {
  display: flex;
  gap: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-contact i { color: var(--primary); margin-top: 5px; }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Inner Page Hero */
.page-hero {
  padding: 12rem 0 8rem;
  background: linear-gradient(-45deg, var(--gray-100), var(--primary-light), var(--gray-200), var(--white));
  background-size: 400% 400%;
  animation: slide-bg 15s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300a651' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--black), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 1;
}

/* Section Backgrounds */
.section {
  padding: 6rem 0;
  overflow-x: hidden;
}

.section:nth-child(even) {
  background-color: var(--gray-100);
}

/* Modern Contact Form */
.contact-form-container {
  margin-top: 5rem;
  background: var(--card-bg);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-200);
  background: var(--gray-100);
  color: var(--black);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300a651' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.2rem;
  cursor: pointer;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.form-submit .btn {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

/* Contact Page Layout Redesign */
.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card.compact {
  padding: 2rem;
}

.feature-card.compact .feature-icon {
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.feature-card.compact h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.compact-form-container {
  margin-top: 0;
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.compact-form-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.compact-form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

.modern-form.compact {
  gap: 1rem;
}

.modern-form.compact .form-group {
  gap: 0.4rem;
}

.modern-form.compact .form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.modern-form.compact input,
.modern-form.compact select,
.modern-form.compact textarea {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  border-width: 1px;
}

.modern-form.compact textarea {
  min-height: 100px;
}

.form-submit {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.5rem;
}

.form-submit .btn {
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-toggle {
    display: block !important;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 7rem 2rem 4rem;
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    box-shadow: none;
    align-items: center;
    text-align: center;
    overflow-y: auto;
    z-index: 1000;
    visibility: hidden;
    overscroll-behavior: contain;
  }

  [data-theme="dark"] .nav-list {
    background: linear-gradient(135deg, #121212, #1a1a1a);
  }

  .nav-list li { 
    width: 100%; 
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-list.is-open { 
    right: 0; 
    visibility: visible;
  }

  .nav-list.is-open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list a { 
    font-size: 1.35rem; 
    font-weight: 700;
    padding: 1.15rem;
  }

  .nav-lang-item { 
    margin-left: 0; 
    margin-top: 3rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(0,0,0,0.05); 
    width: 80%;
    justify-content: center;
  }

  .nav-theme-item { 
    margin-left: 0; 
    margin-top: 1.5rem; 
    padding-top: 0; 
    width: 100%; 
    justify-content: center;
    border-top: none;
  }

  .nav-toggle { 
    display: block; 
    padding: 10px;
    margin-right: -10px;
  }

  /* Staggered animation for menu items */
  .nav-list.is-open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-list.is-open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-list.is-open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-list.is-open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-list.is-open li:nth-child(5) { transition-delay: 0.3s; }
  .nav-list.is-open li:nth-child(6) { transition-delay: 0.35s; }
  .nav-list.is-open li:nth-child(7) { transition-delay: 0.4s; }
  .nav-list.is-open li:nth-child(8) { transition-delay: 0.45s; }

  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-text { order: 2; display: flex; flex-direction: column; align-items: center; }
  .hero-image { order: 1; max-width: 400px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .work-card:nth-child(1),
  .work-card:nth-child(2),
  .work-card:nth-child(4),
  .work-card:nth-child(5) {
    transform: none;
  }
  .contact-main-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .header {
    padding: 1.2rem 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
  }

  .logo-image {
    height: 80px; /* Increased mobile size for better visibility */
  }

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 7rem 2rem 4rem;
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    box-shadow: none;
    align-items: center;
    text-align: center;
    overflow-y: auto;
    z-index: 1000;
    visibility: hidden;
    overscroll-behavior: contain;
  }

  [data-theme="dark"] .nav-list {
    background: linear-gradient(135deg, #121212, #1a1a1a);
  }

  .nav-list.is-open { 
    right: 0; 
    visibility: visible;
    animation: fadeInMenu 0.4s ease forwards;
  }

  @keyframes fadeInMenu {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .nav-list li { 
    width: 100%; 
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-list.is-open li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation for menu items */
  .nav-list.is-open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-list.is-open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-list.is-open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-list.is-open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-list.is-open li:nth-child(5) { transition-delay: 0.3s; }
  .nav-list.is-open li:nth-child(6) { transition-delay: 0.35s; }
  .nav-list.is-open li:nth-child(7) { transition-delay: 0.4s; }
  .nav-list.is-open li:nth-child(8) { transition-delay: 0.45s; }

  .nav-list a { 
    font-size: 1.35rem; 
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 1.15rem;
    display: block;
    color: var(--black);
    transition: var(--transition);
  }

  .nav-list a:active {
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
  }

  .nav-list a.active {
    color: var(--primary);
    position: relative;
  }

  .nav-list a.active::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
  }

  .nav-lang-item { 
    margin-left: 0; 
    margin-top: 4rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(0,0,0,0.05); 
    width: 60%;
    justify-content: center;
  }

  [data-theme="dark"] .nav-lang-item {
    border-top-color: rgba(255,255,255,0.1);
  }

  .nav-theme-item { 
    margin-left: 0; 
    margin-top: 2rem; 
    padding-top: 0; 
    width: 100%; 
    justify-content: center;
    border-top: none;
  }

  .theme-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
  }

  .nav-toggle { 
    display: block; 
    padding: 10px;
    margin-right: -10px;
  }
  
  .hero { 
    min-height: auto; 
    padding: 8rem 0 4rem; 
    text-align: center;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-text {
    align-items: center;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .page-title,
  .page-about .page-title,
  .page-activities .page-title {
    font-size: clamp(2.45rem, 15vw, 4.1rem);
    line-height: 0.95;
  }

  .section-title,
  .page-activities .section-title {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .section-subtitle,
  .page-activities .section-subtitle {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .feature-card {
    padding: 2.2rem 1.5rem;
  }

  .feature-card h2,
  .feature-card h3,
  .page-about .card-heading,
  .page-about .feature-card h2 {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .feature-card p,
  .work-card p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-badge {
    justify-content: center;
  }
  .image-wrapper {
    display: none;
  }

  .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
  .teaser-grid { grid-template-columns: 1fr; }
  .page-activities .page-hero {
    min-height: 62vh;
    padding: 9rem 0 6rem;
  }
  .page-kicker {
    font-size: 1.3rem;
  }
  .work-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto 3rem;
    padding: 2rem 0;
    text-align: center;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card {
    min-height: 310px;
    padding: 1.75rem;
  }
  .work-card h3 {
    font-size: 1.8rem;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-content { padding: 3rem 1.5rem; }
  .cta-content h2 { font-size: 2rem; }
  .founder-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .founder-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  .contact-form-container { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 2rem; }

  .nav {
    align-items: center;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    width: 54px;
    height: 42px;
    margin-right: 0;
    padding: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .nav-toggle:active {
    transform: scale(0.96);
  }

  [data-theme="light"] .nav-toggle {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }

  .nav-toggle .hamburger {
    width: 22px;
    height: 16px;
  }

  .nav-toggle .hamburger span {
    height: 2px;
    background: var(--black);
    transform-origin: center;
  }

  [data-theme="dark"] .nav-toggle .hamburger span,
  .page-about .nav-toggle .hamburger span,
  .page-activities .nav-toggle .hamburger span {
    background: #ffffff;
  }

  [data-theme="light"] .page-about .nav-toggle .hamburger span,
  [data-theme="light"] .page-activities .nav-toggle .hamburger span {
    background: #14221a;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-list {
    gap: 0.5rem;
    justify-content: flex-start;
    padding: 7.5rem 1.5rem 2rem;
    background:
      radial-gradient(circle at top, rgba(0, 166, 81, 0.12), transparent 18rem),
      var(--white);
  }

  [data-theme="dark"] .nav-list,
  [data-theme="dark"] .page-about .nav-list,
  [data-theme="dark"] .page-activities .nav-list {
    background:
      radial-gradient(circle at top, rgba(0, 166, 81, 0.18), transparent 18rem),
      linear-gradient(145deg, #030806, #10150e);
  }

  .nav-list li {
    max-width: 340px;
  }

  .nav-list a {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  [data-theme="light"] .nav-list a {
    background: rgba(0, 0, 0, 0.035);
    border-color: rgba(0, 0, 0, 0.06);
  }

  .nav-list a.active::before {
    display: none;
  }

  .nav-list a.active {
    background: var(--primary);
    color: #ffffff !important;
  }

  .nav-lang-item {
    width: 100%;
    max-width: 340px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .nav-lang-switcher {
    width: 100%;
    justify-content: center;
  }

  .nav-theme-item {
    margin-top: 1rem;
  }

  .page-about .page-hero {
    padding: 8rem 0 4rem;
  }

  .page-about .founder-story {
    padding-top: 2rem;
  }

  .founder-content {
    padding: 2rem 1.25rem;
    border-radius: 26px;
  }

  .founder-photo {
    width: 132px;
    height: 132px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  }

  .founder-photo img {
    object-position: center 18%;
  }

  .page-about .founder-copy h2 {
    font-size: 2.05rem;
    margin-bottom: 0.35rem;
  }

  .page-about .founder-copy h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin: 0.25rem 0 1.25rem;
  }

  .page-about .founder-copy p {
    font-size: 1rem;
    line-height: 1.65;
    max-width: none;
  }

  .page-about .about {
    padding-top: 2rem;
  }
}
