/* ============================================
   ROYAL BLUE THEME - SHARED STYLES
   ============================================ */

:root {
  --primary: #0a5c3a;
  --primary-light: #0d7a4e;
  --secondary: #10b981;
  --accent: #34d399;
  --green-dark: #064e3b;
  --green-light: #6ee7b7;
  --royal-blue: #1a2a6c;
  --royal-blue-dark: #0d1a4a;
  --royal-blue-light: #2d4a9a;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f0fdf4;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #0a5c3a, #0d7a4e);
  --gradient-accent: linear-gradient(135deg, #10b981, #34d399);
  --gradient-green: linear-gradient(135deg, #059669, #10b981);
  --shadow: 0 20px 60px rgba(10, 92, 58, 0.15);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --radius: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-wrapper {
  text-align: center;
  animation: fadeUp 1.2s ease;
}

.loader-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-top: 4px solid var(--secondary);
  border-right: 4px solid var(--green-light);
  animation: spin 1s linear infinite;
  margin: 0 auto 30px;
  position: relative;
}

.loader-ring::after {
  content: 'SF';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.loader-wrapper h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.loader-wrapper h2 span {
  color: var(--green-light);
}

.loader-wrapper p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 8px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin: 20px auto 0;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--green-light));
  animation: loadBar 2s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== ROYAL BLUE NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #1a2a6c, #2d4a9a);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: linear-gradient(135deg, #0d1a4a, #1a2a6c);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: 12px 40px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.nav-logo .logo-icon img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.nav-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo span .highlight {
  color: #6ee7b7;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 30px;
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #6ee7b7;
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links li a:hover::after {
  width: 60%;
}

.nav-links li a.active::after {
  width: 60%;
  background: #ffffff;
}

.nav-links li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links li a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.join-btn-nav {
  padding: 10px 32px !important;
  background: var(--gradient-green) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3) !important;
  transition: var(--transition);
}

.join-btn-nav::after {
  display: none !important;
}

.join-btn-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4) !important;
  background: var(--gradient-green) !important;
}

/* ===== LANGUAGE DROPDOWN ===== */
.language-dropdown {
  position: relative;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.language-toggle:hover {
  border-color: #6ee7b7;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.language-toggle .arrow {
  font-size: 0.6rem;
  transition: var(--transition);
}

.language-dropdown.active .language-toggle .arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  max-height: 300px;
  overflow-y: auto;
  background: linear-gradient(135deg, #1a2a6c, #2d4a9a);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
}

.language-dropdown.active .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-menu::-webkit-scrollbar {
  width: 4px;
}
.language-menu::-webkit-scrollbar-track {
  background: transparent;
}
.language-menu::-webkit-scrollbar-thumb {
  background: #6ee7b7;
  border-radius: 4px;
}

.language-menu li a {
  display: block;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.language-menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* ===== HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 50px 80px;
  position: relative;
  background: linear-gradient(180deg, #ecfdf5 0%, var(--light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(10, 92, 58, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 30px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-text .badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-text h1 .highlight {
  color: var(--primary);
}

.hero-text h1 .green {
  color: var(--secondary);
}

.hero-text p {
  font-size: 1.3rem;
  color: #2d3748;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(10, 92, 58, 0.25);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 92, 58, 0.35);
}

.btn-primary i {
  transition: var(--transition);
}

.btn-primary:hover i {
  transform: translateX(6px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: transparent;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 30px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-tag .line {
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 4px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title .highlight {
  color: var(--primary);
}

.section-sub {
  color: var(--gray);
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.9;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* ===== IMPACT ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.impact-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.impact-card .number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.impact-card .label {
  font-weight: 600;
  color: var(--dark);
  font-size: 1.1rem;
  margin-top: 4px;
}

.impact-card .sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 4px;
}

.impact-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--secondary);
  font-size: 1.4rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 50px 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-brand .logo-icon img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand h3 span {
  color: var(--green-light);
}

.footer-brand p {
  line-height: 1.8;
  max-width: 320px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green-light);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a:hover {
  color: var(--white) !important;
}

/* ===== IMAGE STYLES ===== */
.img-fluid {
  width: 100%;
  height: auto;
  display: block;
}

.img-circle {
  border-radius: 50%;
  object-fit: cover;
}

.img-rounded {
  border-radius: var(--radius);
}

.img-shadow {
  box-shadow: var(--shadow);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, rgba(10, 92, 58, 0.04), rgba(16, 185, 129, 0.04));
  border: 2px solid rgba(10, 92, 58, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(10, 92, 58, 0.12);
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3.8rem;
  }
  .hero-text p {
    font-size: 1.15rem;
  }
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, #1a2a6c, #2d4a9a);
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    padding: 50px 35px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links li a {
    font-size: 1.15rem;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-links li a::after {
    bottom: 2px;
  }

  .join-btn-nav {
    margin-top: 10px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .navbar {
    top: 12px;
    width: calc(100% - 24px);
    padding: 12px 24px;
    border-radius: 40px;
  }

  .navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 12px 24px;
  }

  .hero {
    padding: 120px 24px 50px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .section {
    padding: 60px 24px;
  }

  .footer {
    padding: 40px 24px 20px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: 1rem;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .impact-card {
    padding: 20px 14px;
  }

  .impact-card .number {
    font-size: 2.4rem;
  }

  .impact-card .icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .nav-logo span {
    font-size: 1rem;
  }

  .nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .language-toggle span:not(.arrow) {
    display: none;
  }

  .language-toggle {
    padding: 8px 12px;
  }

  .img-placeholder {
    min-height: 150px;
    font-size: 3rem;
  }
}

@media (max-width: 400px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 100px 16px 30px;
  }

  .section {
    padding: 40px 16px;
  }
}
.p {
    text-align: justify;
}

/* ===== LOADER LOGO ===== */
.loader-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--secondary);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.3);
  animation: pulseGlow 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes pulseGlow {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
  }
}

/* ===== LOADER LOGO ===== */
.loader-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--secondary);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.3);
  animation: pulseGlow 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes pulseGlow {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
  }
}

/* ===== PILLARS IMAGE SECTION ===== */
.pillars-image-section {
  padding: 40px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-image-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.pillars-image-wrapper h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pillars-image-wrapper h2 i {
  color: var(--secondary);
}

.pillars-image-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(10, 92, 58, 0.08);
  background: linear-gradient(135deg, rgba(10, 92, 58, 0.02), rgba(16, 185, 129, 0.02));
}

.pillars-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

.pillars-image-container img:hover {
  transform: scale(1.02);
}

@media (max-width: 968px) {
  .pillars-image-section {
    padding: 30px 24px;
  }
  .pillars-image-wrapper {
    padding: 24px;
  }
  .pillars-image-wrapper h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .pillars-image-section {
    padding: 20px 16px;
  }
  .pillars-image-wrapper {
    padding: 16px;
  }
  .pillars-image-wrapper h2 {
    font-size: 1.1rem;
  }
}