:root {
    --primary: #007A33;
    --primary-dark: #005226;
    --primary-darker: #003315;
    --primary-light: #00a350;
    --primary-vibrant: #00c964;
    --primary-muted: #4a8c5e;
    --secondary: #F9D616;
    --secondary-light: #fff176;
    --secondary-gold: #ffc107;
    --secondary-dark: #e6b800;
    --secondary-muted: #d4b82a;
    --accent: #D52B1E;
    --accent-dark: #b8241a;
    --accent-light: #e64a3a;
    --accent-orange: #ff5722;
    --blue: #1E5B8C;
    --blue-dark: #0d3d5c;
    --blue-light: #2a7ab8;
    --blue-navy: #1a3a5c;
    --celeste: #87CEEB;
    --celeste-light: #B0E0E6;
    --celeste-muted: #7FCDCD;
    --dark: #0d1117;
    --gray: #1a2332;
    --gray-mid: #3d4654;
    --gray-light: #586674;
    --light-gray: #f0f4f8;
    --light-gray-2: #e8eef4;
    --light-gray-3: #dde4ea;
    --white: #ffffff;
    --text: #1c2128;
    --text-light: #5a6577;
    --text-muted: #8b949e;
    --border: #d0d7de;
    --border-light: #e6e9ed;
    --border-medium: #c5cdd6;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 20px rgba(0, 122, 51, 0.25);
    --shadow-secondary: 0 4px 20px rgba(249, 214, 22, 0.3);
    --shadow-accent: 0 4px 20px rgba(213, 43, 30, 0.25);
    --shadow-blue: 0 4px 20px rgba(30, 91, 140, 0.25);
    --shadow-celeste: 0 4px 20px rgba(93, 173, 226, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.75;
    background: var(--white);
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

p {
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    letter-spacing: -0.3px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary) 50%, var(--secondary-dark) 100%);
    color: var(--dark);
    box-shadow: var(--shadow-secondary);
    position: relative;
    overflow: hidden;
    font-weight: 700;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-gold) 50%, var(--secondary-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 214, 22, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.section {
    padding: 80px 0;
    position: relative;
    background: var(--white);
}

.section-alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-dark {
    background: linear-gradient(135deg, #002915 0%, var(--primary-dark) 50%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(249, 214, 22, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(30, 91, 140, 0.3);
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.section-title {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(30, 91, 140, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--secondary);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    max-width: 100%;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-list a {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-mid);
    transition: all 0.2s ease;
    border-radius: 6px;
    white-space: nowrap;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    border-radius: 1px;
    transition: width 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--blue);
    background: rgba(30, 91, 140, 0.08);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 20px;
}

.nav-list .btn-nav {
    background: linear-gradient(135deg, var(--blue) 0%, var(--celeste) 100%);
    color: var(--white) !important;
    padding: 10px 20px;
    margin-left: 8px;
    font-weight: 700;
}

.nav-list .btn-nav:hover {
    background: linear-gradient(135deg, var(--celeste) 0%, var(--blue) 100%);
    color: var(--white) !important;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 25%, var(--primary) 50%, var(--primary-light) 75%, var(--primary) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 214, 22, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 201, 100, 0.05) 0%, transparent 50%);
    background-size: 200px 200px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255,255,255,0.03), transparent);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 51, 24, 0.4) 0%, rgba(0, 92, 38, 0.3) 50%, rgba(0, 122, 51, 0.25) 100%),
        radial-gradient(ellipse at top right, rgba(0, 201, 100, 0.1), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

.hero-text h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 18px 28px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.badge-years {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 2px 10px rgba(249, 214, 22, 0.3);
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-saludo {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-slogan {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-gold);
    margin-bottom: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(249, 214, 22, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-secondary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
}

.highlight-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 28px;
    border-radius: 12px;
    color: var(--white);
    margin: 28px 0;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 8px 30px rgba(30, 91, 140, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.highlight-box i {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--secondary);
}

.highlight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.9rem;
    text-align: justify;
}

.about-stats {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-light);
}

.about-stats h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

.stat-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.stat-item:nth-child(odd) {
    background: linear-gradient(90deg, transparent, rgba(0, 122, 51, 0.03), transparent);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
    display: block;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.mv-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.mv-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--blue), var(--celeste));
}

.mv-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--celeste), var(--blue));
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray-2);
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 91, 140, 0.3);
}

.mv-icon i {
    font-size: 1.4rem;
}

.mv-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.mv-content {
    flex: 1;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.9rem;
    text-align: justify;
}

.mv-card p:last-child {
    margin-bottom: 0;
}

/* Work Institutional */
.ti-content {
    max-width: 900px;
    margin: 0 auto;
}

.ti-item {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.ti-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ti-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.ti-item:hover::before {
    opacity: 1;
}

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

.ti-item:nth-child(1) .ti-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 122, 51, 0.3);
}

.ti-item:nth-child(2) .ti-icon {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 91, 140, 0.3);
}

.ti-item:nth-child(3) .ti-icon {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-dark) 100%);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(249, 214, 22, 0.3);
}

.ti-icon i {
    font-size: 1.25rem;
}

.ti-text h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.ti-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.9rem;
    text-align: justify;
}

.ti-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.tag {
    background: linear-gradient(135deg, rgba(30, 91, 140, 0.1) 0%, rgba(30, 91, 140, 0.05) 100%);
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(30, 91, 140, 0.2);
    transition: all 0.2s ease;
}

.tag:nth-child(1):hover { background: var(--blue); }
.tag:nth-child(2):hover { background: var(--celeste); }
.tag:nth-child(3):hover { background: var(--secondary-gold); color: var(--dark); }
.tag:nth-child(4):hover { background: var(--accent); }

.tag:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 91, 140, 0.3);
}

/* Impact */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card:nth-child(1) .impact-icon {
    background: linear-gradient(135deg, rgba(0, 122, 51, 0.35) 0%, rgba(0, 163, 80, 0.2) 100%);
    border: 1px solid rgba(0, 122, 51, 0.4);
    box-shadow: 0 6px 20px rgba(0, 122, 51, 0.35);
}

.impact-card:nth-child(2) .impact-icon {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.35) 0%, rgba(42, 122, 184, 0.2) 100%);
    border: 1px solid rgba(93, 173, 226, 0.4);
    box-shadow: 0 6px 20px rgba(93, 173, 226, 0.35);
}

.impact-card:nth-child(3) .impact-icon {
    background: linear-gradient(135deg, rgba(249, 214, 22, 0.35) 0%, rgba(255, 193, 7, 0.2) 100%);
    border: 1px solid rgba(249, 214, 22, 0.4);
    box-shadow: 0 6px 20px rgba(249, 214, 22, 0.35);
}

.impact-card:nth-child(4) .impact-icon {
    background: linear-gradient(135deg, rgba(213, 43, 30, 0.35) 0%, rgba(230, 74, 58, 0.2) 100%);
    border: 1px solid rgba(213, 43, 30, 0.4);
    box-shadow: 0 6px 20px rgba(213, 43, 30, 0.35);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(249, 214, 22, 0.3) 0%, rgba(255, 193, 7, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(249, 214, 22, 0.25);
    border: 1px solid rgba(249, 214, 22, 0.3);
}

.impact-icon i {
    font-size: 1.75rem;
    color: var(--secondary);
    filter: drop-shadow(0 2px 4px rgba(249, 214, 22, 0.3));
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    line-height: 1;
}

.impact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Objectives */
.obj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.obj-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.obj-card:nth-child(1)::before { background: var(--blue); }
.obj-card:nth-child(2)::before { background: var(--celeste); }
.obj-card:nth-child(3)::before { background: var(--secondary-gold); }
.obj-card:nth-child(4)::before { background: var(--accent); }
.obj-card:nth-child(5)::before { background: var(--primary); }
.obj-card:nth-child(6)::before { background: var(--blue-navy); }

.obj-card h3 {
    color: var(--blue-dark);
}

.obj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--blue);
}

.obj-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.obj-number {
    position: absolute;
    top: -15px;
    right: -5px;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--light-gray-2);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.obj-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.obj-card p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    text-align: justify;
}

/* Directorio */
.directorio-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.directorio-intro p {
    color: var(--text);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.directorio-enfoque {
    background: linear-gradient(135deg, rgba(0, 122, 51, 0.08) 0%, rgba(0, 122, 51, 0.03) 100%);
    padding: 20px 24px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    text-align: justify;
    font-size: 0.95rem;
    margin-top: 20px;
    box-shadow: inset 0 0 20px rgba(0, 122, 51, 0.03);
}

.directorio-enfoque strong {
    color: var(--primary);
}

.directorio-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    background: var(--white);
}

.directorio-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.directorio-table-wrapper::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.directorio-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.directorio-table {
    width: 100%;
    border-collapse: collapse;
}

.directorio-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.directorio-table thead {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--blue-navy) 100%);
    color: var(--white);
    position: relative;
}

.directorio-table th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.directorio-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    vertical-align: middle;
    text-align: center;
}

.directorio-foto {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    border: 2px solid var(--border-light);
    overflow: hidden;
    margin: 0 auto;
}

.directorio-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directorio-acciones {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-accion {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--blue);
}

.btn-email:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 91, 140, 0.3);
}

.directorio-table tbody tr {
    cursor: pointer;
    transition: all 0.2s ease;
}

.directorio-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(0, 122, 51, 0.08) 0%, var(--light-gray) 100%);
}

.btn-credencial {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.btn-credencial:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 122, 51, 0.3);
}

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

.directorio-table .cargo {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 122, 51, 0.15) 0%, rgba(0, 122, 51, 0.08) 100%);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary);
    border: 1px solid rgba(0, 122, 51, 0.2);
}

.directorio-nota {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 20px;
    font-style: italic;
}

/* Pronunciamientos */
.pronunciamientos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pronunciamiento-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pronunciamiento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pronunciamiento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.pronunciamiento-card:hover::before {
    opacity: 1;
}

.pronunciamiento-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pronunciamiento-card:nth-child(1) .pronunciamiento-icon { background: linear-gradient(135deg, rgba(0, 122, 51, 0.15) 0%, rgba(0, 122, 51, 0.05) 100%); }
.pronunciamiento-card:nth-child(2) .pronunciamiento-icon { background: linear-gradient(135deg, rgba(93, 173, 226, 0.15) 0%, rgba(93, 173, 226, 0.05) 100%); }
.pronunciamiento-card:nth-child(3) .pronunciamiento-icon { background: linear-gradient(135deg, rgba(249, 214, 22, 0.15) 0%, rgba(249, 214, 22, 0.05) 100%); }
.pronunciamiento-card:nth-child(4) .pronunciamiento-icon { background: linear-gradient(135deg, rgba(213, 43, 30, 0.15) 0%, rgba(213, 43, 30, 0.05) 100%); }
.pronunciamiento-card:nth-child(5) .pronunciamiento-icon { background: linear-gradient(135deg, rgba(30, 91, 140, 0.15) 0%, rgba(30, 91, 140, 0.05) 100%); }

.pronunciamiento-icon i {
    font-size: 1.4rem;
}

.pronunciamiento-card:nth-child(1) .pronunciamiento-icon i { color: var(--primary); }
.pronunciamiento-card:nth-child(2) .pronunciamiento-icon i { color: var(--celeste); }
.pronunciamiento-card:nth-child(3) .pronunciamiento-icon i { color: var(--secondary-gold); }
.pronunciamiento-card:nth-child(4) .pronunciamiento-icon i { color: var(--accent); }
.pronunciamiento-card:nth-child(5) .pronunciamiento-icon i { color: var(--blue); }

.pronunciamiento-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.pronunciamiento-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Gallery */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-tab {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gallery-tab:hover,
.gallery-tab.active {
    background: linear-gradient(135deg, var(--celeste) 0%, var(--blue) 100%);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 77, 32, 0.95) 100%);
    padding: 28px 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--secondary);
}

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

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.2s ease;
    text-align: left;
}

.faq-question:hover {
    color: var(--blue);
    background: var(--light-gray);
}

.faq-question i {
    color: var(--blue);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(30, 91, 140, 0.15), var(--shadow-blue);
}

.contact-info {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 30%, var(--blue-navy) 100%);
    padding: 36px;
    border-radius: 16px;
    color: var(--white);
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 77, 32, 0.4);
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-gold), var(--celeste), var(--blue), var(--accent), var(--primary));
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1rem;
}

.contact-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--white);
}

.contact-info p {
    opacity: 0.85;
    font-size: 0.85rem;
    color: var(--white);
}

.social-links {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links h4 {
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-gold) 100%);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 214, 22, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    color: var(--white);
    padding: 56px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--primary-light) 20%, 
        var(--celeste) 35%, 
        var(--blue-navy) 50%, 
        var(--secondary) 65%, 
        var(--accent) 80%, 
        var(--primary) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--white);
}

.footer-logo h2 span {
    color: var(--secondary);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--secondary);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.2s ease;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary);
    width: 18px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-content video {
    width: 100%;
    border-radius: 12px;
    max-height: 80vh;
}

#modalImage {
    max-height: 90vh;
    max-width: 90vw;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.15);
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-navy) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30, 91, 140, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--celeste) 0%, var(--blue) 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(30, 91, 140, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-stats {
        position: static;
    }

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

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

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .header-content {
        padding: 12px 16px;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: var(--light-gray);
        border-radius: 6px;
    }

    .nav-list {
        position: fixed;
        top: 60px;
        left: 12px;
        right: 12px;
        background: var(--white);
        flex-direction: column;
        padding: 12px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-radius: 12px;
        gap: 4px;
        z-index: 1000;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .nav-list a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
    }

    .nav-list .btn-nav {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

    .hero-badge {
        padding: 12px 16px;
        margin-bottom: 16px;
    }

    .badge-years {
        font-size: 1.1rem;
    }

    .hero-saludo {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-slogan {
        font-size: 0.95rem;
        padding: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-tag {
        padding: 6px 12px;
        font-size: 9px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .highlight-box {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .highlight-box i {
        font-size: 1.5rem;
    }

    .about-stats {
        padding: 20px;
    }

    .stat-item {
        padding: 16px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .mv-card {
        padding: 24px 20px;
    }

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

    .mv-icon i {
        font-size: 1.25rem;
    }

    .mv-card h3 {
        font-size: 1.15rem;
    }

    .mv-card p {
        font-size: 0.85rem;
    }

    .ti-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .ti-icon {
        margin: 0 auto 16px;
    }

    .ti-tags {
        justify-content: center;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .impact-card {
        padding: 24px 16px;
    }

    .impact-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .impact-icon i {
        font-size: 1.25rem;
    }

    .impact-number {
        font-size: 1.75rem;
    }

    .impact-label {
        font-size: 0.7rem;
    }

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

    .obj-card {
        padding: 24px 20px;
    }

    .obj-number {
        font-size: 3rem;
        top: -10px;
        right: -3px;
    }

    .obj-card h3 {
        font-size: 1rem;
    }

    .obj-card p {
        font-size: 0.8rem;
    }

    .directorio-intro {
        padding: 0 16px;
    }

    .directorio-intro p {
        font-size: 0.9rem;
    }

    .directorio-enfoque {
        padding: 16px;
    }

    .directorio-table-wrapper {
        margin: 0 16px;
        border-radius: 10px;
    }

    .directorio-table {
        min-width: 500px;
    }

    .directorio-table th,
    .directorio-table td {
        padding: 12px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .directorio-table th {
        font-size: 0.7rem;
    }

    .directorio-table td:nth-child(2) {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .directorio-table .cargo {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .pronunciamientos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .pronunciamiento-card {
        padding: 20px;
    }

    .gallery-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-tab {
        justify-content: center;
    }

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

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }

    .contact-info {
        padding: 24px 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo h2 {
        font-size: 1.25rem;
    }
}