        .glass-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .hero-pattern {
            background-image: linear-gradient(180deg, rgba(0, 38, 61, 0.95) 0%, rgba(0, 17, 51, 0.98) 100%);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }

        /* Animation Classes */
        [data-animate] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        [data-animate].is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .text-gradient {
            background: linear-gradient(135deg, #DEC07C 0%, #ceae73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Decorative Divider */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }
        .wave-divider .shape-fill {
            fill: #f9fafb; /* matches bg-gray-50 */
        }

        .hierarchy-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
            border: 1px solid #f3f4f6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .hierarchy-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 38, 61, 0.15), 0 0 20px -5px rgba(222, 192, 124, 0.4);
            border-color: #DEC07C;
            z-index: 20;
        }
        .hierarchy-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #DEC07C, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 1rem 1rem 0 0;
        }
        .hierarchy-card:hover::after {
            opacity: 1;
        }

        /* The Image Zoom Crop Trick */
        .zoom-crop-container {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem auto;
            position: relative;
            border: 3px solid #DEC07C; /* Brand Gold */
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
            background-color: #00263D;
            flex-shrink: 0;
        }
        
        .zoom-crop-container.small {
            width: 80px;
            height: 80px;
            border-width: 2px;
        }

        .zoom-crop-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%; 
            transform: scale(2.2); 
            transition: transform 0.4s ease;
        }

        .hierarchy-card:hover .zoom-crop-container img {
            transform: scale(2.35);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        .section-header::before, .section-header::after {
            content: '';
            height: 1px;
            background: #e5e7eb;
            flex-grow: 1;
            max-width: 100px;
        }
