.facilities-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f0fdf4 100%);
        position: relative;
        overflow: hidden;
    }

    .facilities-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: radial-gradient(ellipse at top, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .container-wide {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 1;
    }

    .section-header-centered {
        text-align: center;
        margin-bottom: 60px;
        animation: fadeInDown 0.8s ease;
    }

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

    .section-main-title {
        font-size: 3rem;
        font-weight: 900;
        background: linear-gradient(135deg, #065f46 0%, #059669 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 1.125rem;
        color: #64748b;
        font-weight: 500;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: 32px;
    }

    .facility-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        animation: cardAppear 0.6s ease backwards;
        position: relative;
    }

    .facility-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #059669 0%, #10b981 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .facility-card:hover::before {
        transform: scaleX(1);
    }

    .facility-card:nth-child(1) { animation-delay: 0.1s; }
    .facility-card:nth-child(2) { animation-delay: 0.2s; }
    .facility-card:nth-child(3) { animation-delay: 0.3s; }
    .facility-card:nth-child(4) { animation-delay: 0.4s; }
    .facility-card:nth-child(5) { animation-delay: 0.5s; }
    .facility-card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes cardAppear {
        from {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .facility-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(5, 150, 105, 0.15), 0 20px 60px rgba(0, 0, 0, 0.12);
        border-color: #10b981;
    }

    .facility-image-container {
        position: relative;
        width: 100%;
        height: 280px;
        overflow: hidden;
        background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
    }

    .facility-image {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .facility-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s ease;
        filter: brightness(0.95);
    }

    .facility-card:hover .facility-image img {
        transform: scale(1.1);
        filter: brightness(1);
    }

    .president-initials {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
        font-size: 5rem;
        font-weight: 900;
        color: white;
        text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        letter-spacing: 2px;
    }

    .facility-info {
        padding: 28px;
    }

    .facility-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 20px;
        line-height: 1.3;
        min-height: 2em;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .facility-title::before {
        content: '';
        width: 4px;
        height: 24px;
        background: linear-gradient(180deg, #059669 0%, #10b981 100%);
        border-radius: 4px;
        flex-shrink: 0;
    }

    .info-grid {
        display: grid;
        gap: 16px;
        margin-bottom: 24px;
    }

    .info-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
        background: #f8fafc;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .info-row:hover {
        background: #f0fdf4;
        transform: translateX(4px);
    }

    .info-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1rem;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    }

    .info-content {
        flex: 1;
    }

    .info-label {
        display: block;
        color: #64748b;
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .info-value {
        display: block;
        color: #1a1a1a;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.4;
    }

    .info-value.highlight {
        color: #059669;
    }

    .sections-divider {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 2px solid #e2e8f0;
    }

    .sections-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        font-weight: 800;
        color: #1a1a1a;
        font-size: 1rem;
    }

    .sections-header-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
    }

    .sections-count {
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
    }

    .sections-list {
        display: grid;
        gap: 12px;
    }

    .section-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 14px;
        transition: all 0.3s ease;
    }

    .section-item:hover {
        background: #f0fdf4;
        border-color: #10b981;
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
    }

    .section-president-photo {
        flex-shrink: 0;
    }

    .section-president-photo img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #10b981;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    }

    .section-initials {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        color: #065f46;
        font-weight: 900;
        font-size: 1.25rem;
        border: 3px solid #10b981;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    }

    .section-info {
        flex: 1;
        display: grid;
        gap: 2px;
    }

    .section-name {
        font-weight: 700;
        color: #1a1a1a;
        font-size: 0.95rem;
    }

    .section-president {
        font-size: 0.85rem;
        color: #059669;
        font-weight: 600;
    }

    .section-contact {
        font-size: 0.8rem;
        color: #64748b;
        font-weight: 500;
    }

    .no-sections {
        padding: 24px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-radius: 12px;
        text-align: center;
        color: #64748b;
        font-size: 0.9rem;
        font-weight: 600;
        border: 2px dashed #cbd5e1;
    }

    .empty-state {
        grid-column: 1 / -1;
        text-align: center;
        padding: 80px 20px;
    }

    .empty-state-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto 24px;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: #94a3b8;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .empty-state-text {
        font-size: 1.25rem;
        color: #64748b;
        font-weight: 700;
    }

    /* Responsive */
    @media (max-width: 1400px) {
        .facilities-grid {
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        }
    }

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

        .section-main-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .facilities-section {
            padding: 60px 0;
        }

        .section-header-centered {
            margin-bottom: 40px;
        }

        .section-main-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
        }

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

        .facility-image-container {
            height: 240px;
        }

        .president-initials {
            font-size: 4rem;
        }

        .facility-info {
            padding: 24px;
        }

        .facility-title {
            font-size: 1.25rem;
        }

        .section-item {
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
    }

    @media (max-width: 480px) {
        .container-wide {
            padding: 0 16px;
        }

        .section-main-title {
            font-size: 1.75rem;
        }

        .facility-title {
            font-size: 1.15rem;
            gap: 8px;
        }

        .facility-title::before {
            width: 3px;
            height: 20px;
        }

        .info-row {
            padding: 10px;
        }

        .info-icon {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }
    }


    