@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-blue: #003A93;
  --primary-green: #008631;
  --primary-yellow: #F2D038;
  --primary-blue-rgb: 0, 58, 147;
  --primary-green-rgb: 0, 134, 49;
  --primary-yellow-rgb: 242, 208, 56;
  
  --bg-light: #f4f6fa;
  --bg-white: #ffffff;
  --text-dark: #0a1120;
  --text-slate: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Borders & Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Header heights */
  --header-height: 125px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-blue-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(var(--primary-blue-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-blue-rgb), 0);
  }
}

/* Global utility classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-gradient-blue {
  background: linear-gradient(135deg, var(--primary-blue), #1e60c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--primary-green), #00ba44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.bg-glass-dark {
  background: rgba(10, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Section styling */
section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  background: rgba(var(--primary-blue-rgb), 0.08);
  color: var(--primary-blue);
  white-space: nowrap;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-slate);
  max-width: 700px;
  margin-bottom: 3.5rem;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-light);
  border: 1px solid var(--primary-blue);
}

.btn-primary:hover {
  background-color: #0b4ab3;
  border-color: #0b4ab3;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 58, 147, 0.2);
}

.btn-secondary {
  background-color: var(--primary-green);
  color: var(--text-light);
  border: 1px solid var(--primary-green);
}

.btn-secondary:hover {
  background-color: #009938;
  border-color: #009938;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 134, 49, 0.2);
}

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

.btn-outline:hover {
  background-color: rgba(var(--primary-blue-rgb), 0.05);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-blue);
  border: 1px solid var(--bg-white);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Top Banner */
.top-banner {
  background-color: var(--primary-blue);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  z-index: 1000;
  position: relative;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.banner-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.banner-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.banner-link:hover {
  color: var(--text-light);
  border-bottom-color: var(--primary-yellow);
}

.banner-link.highlight {
  color: var(--primary-yellow);
}

.hide-mobile {
  display: inline-flex;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 999;
  background: rgba(244, 246, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  margin-bottom: -1px;
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  height: 90px;
  box-shadow: var(--shadow-md);
  border-bottom: none;
  margin-bottom: -1px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 115px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-normal);
}

.logo:hover .logo-img {
  transform: scale(1.06) rotate(-3deg);
}

.main-header.scrolled .logo-img {
  height: 85px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-blue);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-slate);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  color: var(--primary-blue);
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 120px; /* adjusted to accommodate top banner */
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  overflow: hidden;
  transition: height var(--transition-normal), top var(--transition-normal);
  z-index: 998;
  visibility: hidden;
  border-bottom: none;
  box-shadow: none;
}

.main-header.scrolled .mobile-drawer {
  top: 70px;
}

.mobile-drawer.open {
  height: calc(100vh - var(--header-height));
  visibility: visible;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 0.75rem;
}

.mobile-nav-link:hover {
  color: var(--primary-blue);
  padding-left: 0.5rem;
}

.mobile-cta {
  width: 100%;
  margin-top: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - var(--header-height) - 33px);
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background-color: var(--bg-white); /* White background as requested */
  color: var(--text-dark);
  z-index: 1;
  position: relative;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 58, 147, 0.05) 0%, rgba(0, 134, 49, 0.02) 50%, rgba(0,0,0,0) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .hero-content {
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 58, 147, 0.05);
  border: 1px solid rgba(0, 58, 147, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  animation: fadeIn 1s infinite alternate;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-dark); /* Changed from white to dark text */
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-slate); /* Changed from light grey to slate grey */
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.hero-actions .btn-outline {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.hero-actions .btn-outline:hover {
  border-color: var(--primary-blue);
  background-color: rgba(0, 58, 147, 0.05);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue); /* Changed from yellow to primary blue for contrast */
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-slate); /* Changed from light grey to slate grey */
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.1); /* Changed from white to subtle dark line */
}

@media (max-width: 576px) {
  .stat-divider {
    display: none;
  }
  .stat-card {
    min-width: 45%;
  }
}

/* Hero Visual Box */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-visual {
    height: 400px;
    margin-top: 2rem;
  }
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 420px;
}

/* Background image representation */
.hero-visual-bg-container {
  width: 320px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #0b1120;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(11, 17, 32, 0.1) 0%, rgba(11, 17, 32, 0.7) 100%);
}

.glass-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: absolute;
  transition: all var(--transition-normal);
}

.floating-card-1, .floating-card-2, .floating-card-3 {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-dark); /* Changed from white to dark text */
  width: 220px;
}

.floating-card-1 {
  top: 8%;
  right: 0;
  z-index: 6;
  animation: float-y 6s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 8%;
  left: -20px;
  z-index: 6;
  animation: float-y 5s ease-in-out infinite alternate;
}

.floating-card-3 {
  top: 55%;
  right: -30px;
  z-index: 4;
  animation: float-y 7s ease-in-out infinite 1s;
}

@media (max-width: 576px) {
  .floating-card-1 {
    right: 20px;
  }
  .floating-card-2 {
    left: 20px;
  }
  .floating-card-3 {
    right: 10px;
  }
}

.icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-blue-tint {
  background-color: rgba(0, 58, 147, 0.2);
  color: #60a5fa;
}

.bg-green-tint {
  background-color: rgba(0, 134, 49, 0.2);
  color: #4ade80;
}

.bg-yellow-tint {
  background-color: rgba(242, 208, 56, 0.2);
  color: var(--primary-yellow);
}

.floating-text {
  display: flex;
  flex-direction: column;
}

.f-title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.f-desc {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 0.1rem;
}

@keyframes float-y {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Text color helpers inside Hero */
.hero-content .text-primary-blue {
  color: #60a5fa;
}

/* Nosotros Section */
.nosotros-section {
  background-color: var(--bg-light);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 4rem;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.nosotros-content-panel {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

@media (max-width: 576px) {
  .nosotros-content-panel {
    padding: 1.5rem;
  }
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.tab-btn.active {
  color: var(--primary-blue);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: var(--radius-full);
}

.tab-content-wrapper {
  min-height: 280px;
}

.tab-pane-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.tab-pane-intro {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-slate);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.tab-pane-body {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.key-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-mini {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-slate);
}

.pillar-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.pillar-mini-dot.bg-blue { background-color: var(--primary-blue); }
.pillar-mini-dot.bg-green { background-color: var(--primary-green); }
.pillar-mini-dot.bg-yellow { background-color: var(--primary-yellow); }

/* Side feature highlights */
.nosotros-features-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
}

.feature-highlight-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-blue-rgb), 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-blue-light { background-color: rgba(0, 58, 147, 0.08); }
.bg-green-light { background-color: rgba(0, 134, 49, 0.08); }
.bg-yellow-light { background-color: rgba(242, 208, 56, 0.12); }

.color-blue { color: var(--primary-blue); }
.color-green { color: var(--primary-green); }
.color-yellow { color: #d4a700; }

.feature-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.feature-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Principios Section */
.bg-dark-slate {
  background-color: #0b1120;
}

.text-white {
  color: var(--bg-white);
}

.text-slate-light {
  color: #94a3b8;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-yellow);
}

.principios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

@media (max-width: 1024px) {
  .principios-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.principio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

.principio-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.border-top-blue { border-top: 4px solid var(--primary-blue); }
.border-top-green { border-top: 4px solid var(--primary-green); }
.border-top-yellow { border-top: 4px solid var(--primary-yellow); }

.principio-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.bg-blue-soft {
  background-color: rgba(0, 58, 147, 0.15);
}
.text-blue {
  color: #60a5fa;
}

.bg-green-soft {
  background-color: rgba(0, 134, 49, 0.15);
}
.text-green {
  color: #4ade80;
}

.bg-yellow-soft {
  background-color: rgba(242, 208, 56, 0.15);
}
.text-yellow {
  color: var(--primary-yellow);
}

.principio-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--bg-white);
}

.principio-card-desc {
  font-size: 0.925rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 0;
}

.principio-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.principio-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.principio-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.point-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.point-bullet.bg-blue { background-color: #60a5fa; }
.point-bullet.bg-green { background-color: #4ade80; }
.point-bullet.bg-yellow { background-color: var(--primary-yellow); }

/* Oferta Section */
.oferta-section {
  background-color: var(--bg-white);
}

.oferta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

@media (max-width: 1024px) {
  .oferta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.oferta-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all var(--transition-normal);
  background-color: var(--bg-white);
}

.oferta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-blue-rgb), 0.15);
}

.oferta-card-body {
  padding: 2.5rem 2rem;
}

.oferta-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.oferta-badge-icon.bg-yellow-light { background-color: rgba(242, 208, 56, 0.12); }
.oferta-badge-icon.bg-blue-light { background-color: rgba(0, 58, 147, 0.08); }
.oferta-badge-icon.bg-green-light { background-color: rgba(0, 134, 49, 0.08); }

.oferta-lvl-sub {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.oferta-lvl-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.oferta-lvl-desc {
  font-size: 0.925rem;
  color: var(--text-slate);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.oferta-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.highlights-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-tag {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-full);
  color: var(--text-slate);
  font-weight: 500;
}

.oferta-card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.25rem 2rem;
  background-color: var(--bg-light);
}

.oferta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.oferta-link:hover {
  color: var(--primary-green);
}

/* Oferta Banner Callout */
.oferta-banner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  padding: 3rem;
  border-radius: var(--radius-lg);
  align-items: center;
  background: rgba(var(--primary-blue-rgb), 0.02);
  border: 1px solid rgba(var(--primary-blue-rgb), 0.05);
}

@media (max-width: 900px) {
  .oferta-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.banner-visual-elements {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.element-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: var(--bg-white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.element-pill span {
  flex-grow: 1;
}

.banner-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.banner-text p {
  font-size: 1rem;
  color: var(--text-slate);
  line-height: 1.6;
}

/* Admisiones CTA Section */
.admisiones-section {
  background-color: #0b1120;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.admisiones-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(0, 134, 49, 0.12) 0%, rgba(0, 58, 147, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.admisiones-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .admisiones-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.section-tag.light-blue {
  background: rgba(0, 58, 147, 0.2);
  color: #60a5fa;
}

.admisiones-lead {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-top: 1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--primary-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.timeline-step:hover .step-number {
  background-color: var(--primary-blue);
  color: var(--text-light);
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.step-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--bg-white);
}

.step-content p {
  font-size: 0.925rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Glass Form Card */
.admisiones-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .admisiones-form-wrapper {
    justify-content: center;
  }
}

.glass-form-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 576px) {
  .glass-form-card {
    padding: 2rem 1.5rem;
  }
}

.admissions-form h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--bg-white);
}

.form-subtitle {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.925rem;
  color: var(--text-light);
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 134, 49, 0.15);
}

.form-group select option {
  background-color: #0b1120;
  color: var(--text-light);
}

.w-full {
  width: 100%;
}

.form-submit-btn {
  margin-top: 1rem;
  padding: 0.875rem;
  font-size: 0.95rem;
}

/* Success Card */
.form-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 134, 49, 0.15);
  border: 1px solid rgba(0, 134, 49, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  margin-bottom: 0.5rem;
}

.form-success-message h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bg-white);
}

.form-success-message p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Footer Section */
.main-footer {
  background-color: #080c14;
  color: #cbd5e1;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-img,
.footer-logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition-normal);
  display: block;
}

.footer-logo:hover .logo-img,
.footer-logo:hover img {
  transform: scale(1.05);
}

.logo-icon-wrapper.bg-green {
  background-color: var(--primary-green);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-links-col h4, 
.footer-contact-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-col h4::after, 
.footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-green);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 0.35rem;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-icon.text-green { color: #4ade80; }
.contact-icon.text-blue { color: #60a5fa; }
.contact-icon.text-yellow { color: var(--primary-yellow); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  font-size: 0.85rem;
  color: #64748b;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .bottom-content {
    flex-direction: column-reverse;
    gap: 1.25rem;
    text-align: center;
  }
}

.bottom-links-credits {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bottom-links-credits a {
  color: #64748b;
}

.bottom-links-credits a:hover {
  color: #94a3b8;
}

.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.scroll-top-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all var(--transition-normal);
  margin-left: 0.5rem;
}

.scroll-top-btn:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Page Banner (Header for Sub-pages) */
.page-banner {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--text-light);
  overflow: hidden;
}

.bg-gradient-blue-green {
  background: linear-gradient(135deg, #061025 0%, #003a93 60%, #00501d 100%);
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
}

.banner-text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--primary-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.page-banner h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--bg-white);
}

@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 2.25rem;
  }
}

.page-banner p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.5;
}

/* Home Quick Access Dashboard */
.quick-access-section {
  padding: 5rem 0;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .quick-access-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.quick-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
}

.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-blue-rgb), 0.15);
}

.quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.quick-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.quick-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.quick-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  transition: color var(--transition-fast);
}

.quick-card:hover .quick-action-link {
  color: var(--primary-green);
}

/* Home News Preview Section */
.eco-preview-section {
  padding: 5rem 0;
}

.eco-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .eco-preview-header {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.eco-preview-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.eco-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .eco-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.eco-preview-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.eco-preview-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.news-date {
  font-size: 0.8rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-cat-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.eco-preview-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--bg-white);
  line-height: 1.3;
}

.eco-preview-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.eco-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.eco-card-link.color-blue { color: #60a5fa; }
.eco-card-link.color-green { color: #4ade80; }
.eco-card-link.color-yellow { color: var(--primary-yellow); }

.eco-card-link:hover {
  text-decoration: underline;
}

.show-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .show-mobile-only {
    display: block;
  }
}

/* Home WhatsApp Help Widget Banner */
.whatsapp-help-banner {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.help-banner-content {
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 2.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 900px) {
  .help-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

.help-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .help-text {
    flex-direction: column;
    gap: 1rem;
  }
}

.help-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 134, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-text h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.help-text p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.help-banner-btn {
  white-space: nowrap;
}

/* Nosotros Page Specifics - Misión & Visión Rows */
.mision-page-section, .vision-page-section {
  padding: 6rem 0;
}

.MV-row-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.MV-row-grid.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

@media (max-width: 900px) {
  .MV-row-grid, .MV-row-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .MV-row-grid.reverse .mv-image-wrapper {
    order: 2; /* Keeps text on top and image at the bottom on mobile */
  }
}

.mv-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .mv-text-content {
    align-items: center;
    text-align: center;
  }
}

.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.mv-text-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .mv-text-content h2 {
    font-size: 1.85rem;
  }
}

.mv-primary-desc {
  font-size: 1.05rem;
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.mv-secondary-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Image Wrappers */
.mv-image-wrapper {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #cbd5e1;
  position: relative;
  transition: transform var(--transition-normal);
}

.mv-image-wrapper:hover {
  transform: translateY(-5px);
}

.border-blue-glow {
  border: 1px solid rgba(0, 58, 147, 0.15);
  box-shadow: 0 12px 30px rgba(0, 58, 147, 0.08);
}

.border-green-glow {
  border: 1px solid rgba(0, 134, 49, 0.15);
  box-shadow: 0 12px 30px rgba(0, 134, 49, 0.08);
}

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

.principles-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

@media (max-width: 900px) {
  .principles-page-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.principle-item-card {
  padding: 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.principle-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.p-item-icon-box {
  margin-bottom: 1.25rem;
}

.principle-item-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.principle-item-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Institutional Symbols */
.symbols-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .symbols-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.symbol-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 576px) {
  .symbol-card {
    padding: 1.75rem;
  }
}

.symbol-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flag-mockup {
  width: 200px;
  height: 120px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.flag-stripe {
  flex: 1;
}

.bg-stripe-blue { background-color: var(--primary-blue); }
.bg-stripe-green { background-color: var(--primary-green); }
.bg-stripe-yellow { background-color: var(--primary-yellow); }

.symbol-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inline-icon {
  flex-shrink: 0;
}

.symbol-info p {
  font-size: 0.95rem;
  color: var(--text-slate);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.symbol-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.symbol-info ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}

.symbol-info ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-size: 1.25rem;
  line-height: 1;
}

.himno-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.himno-lyrics {
  background-color: var(--bg-light);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-yellow);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.himno-lyrics p {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.9rem;
  color: var(--text-slate);
}

/* Academico Page Details */
.levels-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .levels-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.level-detail-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.level-card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: #cbd5e1;
}

.level-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.level-detail-card:hover .level-card-image-wrapper img {
  transform: scale(1.05);
}

.level-card-text-wrapper {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 576px) {
  .level-card-text-wrapper {
    padding: 1.75rem;
  }
}

.level-card-cta {
  margin-top: 1.75rem;
}

.lvl-detail-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.lvl-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lvl-detail-header h2 {
  font-size: 1.65rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.lvl-detail-tag {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lvl-detail-desc {
  font-size: 0.95rem;
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lvl-highlights-list h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.lvl-highlights-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lvl-highlights-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.lvl-highlights-list ul li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Media Tecnica Grid layout */
.media-tecnica-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .media-tecnica-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.media-competencies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.comp-item-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.comp-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.comp-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.media-pedagogy-highlight {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.media-pedagogy-highlight h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--primary-green);
}

.media-pedagogy-highlight p {
  font-size: 0.95rem;
  color: var(--text-slate);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.articulation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.articulation-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.articulation-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.1;
}

.articulation-list li strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.15rem;
}

/* Eco del Milenio News Hub */
.eco-toolbar-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.eco-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .eco-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

@media (max-width: 1024px) {
  .search-box {
    max-width: 100%;
  }
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.925rem;
  outline: none;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.search-box input:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(var(--primary-blue-rgb), 0.1);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-btn {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-light);
  color: var(--text-slate);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.pill-btn:hover {
  background-color: rgba(var(--primary-blue-rgb), 0.05);
  color: var(--primary-blue);
}

.pill-btn.active {
  background-color: var(--primary-blue);
  color: var(--text-light);
  border-color: var(--primary-blue);
}

.eco-grid-section {
  min-height: 400px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-card-body {
  padding: 2rem;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.news-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.bg-blue-soft { background-color: rgba(0, 58, 147, 0.08); }
.bg-green-soft { background-color: rgba(0, 134, 49, 0.08); }
.bg-yellow-soft { background-color: rgba(242, 208, 56, 0.12); }

.news-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  color: var(--text-dark);
}

.news-card-summary {
  font-size: 0.875rem;
  color: var(--text-slate);
  line-height: 1.5;
}

.news-card-footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 1.25rem 2rem;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.text-blue { color: var(--primary-blue); }
.text-green { color: var(--primary-green); }
.text-yellow { color: #d4a700; }

.no-news-message {
  max-width: 480px;
  padding: 3rem 2rem;
}

/* News Details Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 32, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.close-modal-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.close-modal-btn:hover {
  color: var(--text-dark);
}

.modal-header {
  padding: 3.5rem 3rem 1.5rem 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.news-author {
  font-size: 0.8rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.modal-body {
  padding: 2rem 3rem;
}

.modal-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-text-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-footer {
  padding: 1.5rem 3rem 2.5rem 3rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 576px) {
  .modal-header, .modal-body, .modal-footer {
    padding: 1.5rem;
  }
  .modal-header {
    padding-top: 3rem;
  }
}

/* Admisiones Page Styling */
.steps-visual-section {
  padding: 6rem 0;
}

.steps-visual-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .steps-visual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.steps-image-wrapper {
  position: relative;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.steps-img-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.steps-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.steps-intro-desc {
  font-size: 1.1rem;
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.timeline-vertical-steps {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: relative;
  padding-left: 2.25rem;
  width: 100%;
}

.timeline-vertical-steps::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 14px;
  width: 2px;
  height: calc(100% - 2rem);
  background-color: #e2e8f0;
}

.ad-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.ad-step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-light);
  flex-shrink: 0;
  z-index: 2;
  position: absolute;
  left: -2.25rem;
  margin-left: -1px;
}

.ad-step-dot.bg-blue { background-color: var(--primary-blue); }
.ad-step-dot.bg-green { background-color: var(--primary-green); }
.ad-step-dot.bg-yellow { background-color: var(--primary-yellow); color: var(--text-dark); }

.ad-step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.ad-step-content p {
  font-size: 0.95rem;
  color: var(--text-slate);
  line-height: 1.6;
}

/* Requirements & Age guidelines Row */
.requirements-section {
  padding: 6rem 0;
}

.timeline-reqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .timeline-reqs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.documents-checklist-card {
  padding: 3rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.documents-checklist-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.documents-checklist-card p {
  font-size: 0.95rem;
  color: var(--text-slate);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.docs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-slate);
  line-height: 1.5;
}

.docs-list li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.age-guidelines-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1rem;
}

.age-guidelines-container h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.age-intro {
  font-size: 1rem;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.age-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.age-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.age-title-col {
  display: flex;
  flex-direction: column;
}

.age-title-col strong {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.age-title-col span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}

.age-value-col {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.font-yellow { background-color: rgba(242, 208, 56, 0.1); color: #b89100; }
.font-blue { background-color: rgba(0, 58, 147, 0.06); color: var(--primary-blue); }
.font-green { background-color: rgba(0, 134, 49, 0.06); color: var(--primary-green); }

/* Costs Table Styling */
.costs-section {
  padding: 6rem 0;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.costs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-white);
  font-size: 0.95rem;
}

.costs-table th, .costs-table td {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.costs-table th {
  background-color: #f8fafc;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.costs-table td strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.cost-value {
  font-weight: 600;
  color: var(--text-slate);
}

.cost-value.highlight-blue {
  color: var(--primary-blue);
  background-color: rgba(0, 58, 147, 0.02);
  font-weight: 700;
}

.cost-value.highlight-green {
  color: var(--primary-green);
  background-color: rgba(0, 134, 49, 0.02);
  font-weight: 700;
}

.costs-table tr:last-child td {
  border-bottom: none;
}

.costs-footer-notes {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.02);
}

.costs-footer-notes p {
  font-size: 0.85rem;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 0;
}

.container-medium {
  max-width: 800px;
}

.admissions-form-section {
  padding: 6rem 0;
}

/* Contacto Page Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.directory-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.directory-list h3, 
.quick-contact-coordinates h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.directory-item {
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 576px) {
  .directory-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
  }
}

.directory-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.dir-email {
  font-size: 0.85rem;
  color: var(--text-slate);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dir-ext {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.coords-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coords-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.coords-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.coords-list li p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.glass-form-card.light-theme {
  background: var(--bg-white);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-lg);
}

.text-dark-form h3 {
  color: var(--text-dark);
}

.text-dark-form .form-subtitle {
  color: var(--text-muted);
}

.text-dark-form label {
  color: var(--text-slate);
}

.text-dark-form input,
.text-dark-form textarea {
  background-color: var(--bg-light);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
}

.text-dark-form input::placeholder,
.text-dark-form textarea::placeholder {
  color: #94a3b8;
}

.text-dark-form input:focus,
.text-dark-form textarea:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(var(--primary-blue-rgb), 0.1);
}

/* Map Mockup Section */
.map-mockup-section {
  padding: 4rem 0;
}

.map-container-mockup {
  height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.map-overlay-info {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}

@media (max-width: 576px) {
  .map-overlay-info {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

.map-overlay-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.map-overlay-info p {
  font-size: 0.85rem;
  color: var(--text-slate);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.map-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  width: 100%;
}

.map-graphic-mockup {
  width: 100%;
  height: 100%;
  background-color: #e3eaef;
  position: relative;
}

.map-grid-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-marker-pin {
  width: 24px;
  height: 24px;
  background-color: var(--primary-green);
  border: 4px solid var(--bg-white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
  0% { box-shadow: 0 0 0 0 rgba(0, 134, 49, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 134, 49, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 134, 49, 0); }
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--text-light);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all var(--transition-normal);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
  opacity: 0.3;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* News Cards Image Handling */
.news-card-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: #cbd5e1;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-img {
  transform: scale(1.06);
}

/* News Detail Page Layout */
.news-detail-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Full Article Content Card */
.full-article-content {
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

@media (max-width: 576px) {
  .full-article-content {
    padding: 2rem 1.25rem;
  }
}

.article-image-wrapper {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  background-color: #e2e8f0;
}

@media (max-width: 768px) {
  .article-image-wrapper {
    height: 240px;
  }
}

.article-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 1.5rem;
}

.meta-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.article-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-title {
    font-size: 1.75rem;
  }
}

.article-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-blue);
  padding-left: 1.25rem;
}

.article-full-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-full-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.article-divider {
  border: 0;
  height: 1px;
  background-color: #e2e8f0;
  margin: 2.5rem 0;
}

.back-list-btn {
  padding: 0.75rem 1.75rem;
}

/* Sidebar Widgets */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.sidebar-widget {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-green);
}

.sidebar-recent-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-news-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.sidebar-news-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sidebar-news-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background-color: #cbd5e1;
}

.sidebar-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-news-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sidebar-news-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sidebar-news-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.sidebar-news-item:hover h4 {
  color: var(--primary-blue);
}

/* Sidebar Links List */
.sidebar-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sidebar-links-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-slate);
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.sidebar-links-list li:last-child a {
  border-bottom: 0;
}

.sidebar-links-list li a:hover {
  color: var(--primary-blue);
  padding-left: 0.25rem;
}

/* Green Gradient Widget Sidebar */
.bg-green-gradient {
  background: linear-gradient(135deg, #008631 0%, #00501d 100%);
  color: var(--text-light);
}

.bg-green-gradient h3::after {
  background-color: var(--primary-yellow);
}

.bg-green-gradient p {
  font-size: 0.925rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
}

.sidebar-wa-btn {
  color: var(--primary-green) !important;
  font-weight: 700;
}

.sidebar-wa-btn:hover {
  background-color: var(--bg-light) !important;
  transform: translateY(-2px);
}

/* Error page detailing */
.news-detail-error {
  padding: 7rem 0;
  background-color: var(--bg-light);
}

.news-detail-error h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.news-detail-error p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Article Photo Gallery */
.article-gallery-section {
  margin-top: 3.5rem;
}

.article-gallery-section h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .article-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .article-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-img-card {
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #cbd5e1;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-normal);
}

.gallery-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-img-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-blue-rgb), 0.15);
}

.gallery-img-card:hover img {
  transform: scale(1.05);
}

/* Academic Page Registration CTA Banner */
.academic-cta-banner {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.academic-cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .academic-cta-banner h2 {
    font-size: 2rem;
  }
}

.academic-cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Admissions Modal Styles */
.admissions-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease-out forwards;
}

.admissions-modal-card {
  background: var(--bg-white);
  width: 100%;
  max-width: 800px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0,0,0,0.05);
  font-size: 1.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  color: var(--text-dark);
  transition: all var(--transition-normal);
  line-height: 1;
  padding-bottom: 3px;
}

.modal-close-btn:hover {
  background: var(--bg-white);
  color: #ef4444;
  transform: rotate(90deg);
  box-shadow: var(--shadow-sm);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

@media (max-width: 768px) {
  .modal-content-grid {
    grid-template-columns: 1fr;
  }
}

.modal-image-col {
  position: relative;
  height: 100%;
  min-height: 380px;
  background-color: #f1f5f9;
}

@media (max-width: 768px) {
  .modal-image-col {
    height: 180px;
    min-height: 180px;
  }
}

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

.modal-image-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--primary-green);
  color: var(--text-light);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-text-col {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 576px) {
  .modal-text-col {
    padding: 2rem 1.5rem;
  }
}

.modal-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  align-self: center;
  margin: 0 auto 1.5rem auto;
}

.modal-text-col h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.modal-text-col p {
  font-size: 0.95rem;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.modal-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin-bottom: 1.75rem;
}

.modal-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-slate);
  font-weight: 600;
}

.modal-bullet-item .bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.modal-bullet-item .bullet-dot.bg-blue {
  background-color: var(--primary-blue);
}

.modal-bullet-item .bullet-dot.bg-green {
  background-color: var(--primary-green);
}

.modal-actions-wrapper {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

@media (max-width: 576px) {
  .modal-actions-wrapper {
    flex-direction: column;
  }
}

/* Latest News Section Header Row */
.latest-news-section {
  padding: 5rem 0;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-header-row .btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.counter {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  margin-bottom: 24px;

  &:hover {
    border-color: var(--accent-border);
  }
  &:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
}

.hero {
  position: relative;

  .base,
  .framework,
  .vite {
    inset-inline: 0;
    margin: 0 auto;
  }

  .base {
    width: 170px;
    position: relative;
    z-index: 0;
  }

  .framework,
  .vite {
    position: absolute;
  }

  .framework {
    z-index: 1;
    top: 34px;
    height: 28px;
    transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
      scale(1.4);
  }

  .vite {
    z-index: 0;
    top: 107px;
    height: 26px;
    width: auto;
    transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
      scale(0.8);
  }
}

#center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  place-content: center;
  place-items: center;
  flex-grow: 1;

  @media (max-width: 1024px) {
    padding: 32px 20px 24px;
    gap: 18px;
  }
}

#next-steps {
  display: flex;
  border-top: 1px solid var(--border);
  text-align: left;

  & > div {
    flex: 1 1 0;
    padding: 32px;
    @media (max-width: 1024px) {
      padding: 24px 20px;
    }
  }

  .icon {
    margin-bottom: 16px;
    width: 22px;
    height: 22px;
  }

  @media (max-width: 1024px) {
    flex-direction: column;
    text-align: center;
  }
}

#docs {
  border-right: 1px solid var(--border);

  @media (max-width: 1024px) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

#next-steps ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  margin: 32px 0 0;

  .logo {
    height: 18px;
  }

  a {
    color: var(--text-h);
    font-size: 16px;
    border-radius: 6px;
    background: var(--social-bg);
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s;

    &:hover {
      box-shadow: var(--shadow);
    }
    .button-icon {
      height: 18px;
      width: 18px;
    }
  }

  @media (max-width: 1024px) {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;

    li {
      flex: 1 1 calc(50% - 8px);
    }

    a {
      width: 100%;
      justify-content: center;
      box-sizing: border-box;
    }
  }
}

#spacer {
  height: 88px;
  border-top: 1px solid var(--border);
  @media (max-width: 1024px) {
    height: 48px;
  }
}

.ticks {
  position: relative;
  width: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: -4.5px;
    border: 5px solid transparent;
  }

  &::before {
    left: 0;
    border-left-color: var(--border);
  }
  &::after {
    right: 0;
    border-right-color: var(--border);
  }
}

/* Legal & Privacy Policy Page */
.legal-page {
  background-color: var(--bg-light);
}

@media (max-width: 900px) {
  .legal-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .legal-sidebar {
    position: static !important;
  }

  .legal-document-body {
    padding: 2rem 1.5rem !important;
  }
}

/* Legal Document & Privacy Policy Layout Enhancement */
.legal-section-block {
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid #f1f5f9;
  scroll-margin-top: 120px;
}

.legal-section-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-section-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.3;
}

.legal-nav-list li a {
  display: block;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  color: var(--text-slate);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.legal-nav-list li a:hover {
  color: var(--primary-blue);
  background-color: rgba(0, 58, 147, 0.04);
  padding-left: 0.75rem;
}

/* Timeline Vertical Steps Spacing */
.timeline-vertical-steps {
  gap: 2.75rem;
  margin-top: 1.5rem;
}

.ad-timeline-step {
  gap: 1.75rem;
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.legal-step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 58, 147, 0.2);
}

.legal-section-header h3 {
  margin-bottom: 0 !important;
}

@media print {
  .top-banner, .main-header, .main-footer, .legal-sidebar, .page-banner, .institutional-seal-card, .whatsapp-floating-btn {
    display: none !important;
  }
  .legal-document-body {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
  }
}

@media (max-width: 900px) {
  .legal-two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .legal-card {
    padding: 1.75rem !important;
  }
  .institutional-doc-header {
    padding: 1.5rem !important;
  }
}
