* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .faec-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #121a2c 0%, #1a2538 50%, #121a2c 100%);
            min-height: 100vh;
            padding: 40px 20px;
            position: relative;
            overflow-x: hidden;
        }

        .faec-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(2, 75, 154, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(2, 75, 154, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .faec-container {
            border: 1px solid rgba(2, 75, 154, 0.3);
            border-radius: 24px;
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.98);
            padding: 60px 50px;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .faec-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #024b9a, #0365d6, #024b9a);
            border-radius: 24px 24px 0 0;
        }

        .faec-content-header {
            text-align: center;
            margin-bottom: 70px;
            animation: faec-fadeInUp 0.8s ease-out;
            position: relative;
        }

        .faec-content-header::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #024b9a, transparent);
            border-radius: 2px;
        }

        .faec-content-header::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #024b9a, transparent);
            border-radius: 1px;
            opacity: 0.6;
        }

        .faec-content-title {
            font-size: clamp(20px, 4vw, 42px);
            font-weight: 700;
            color: #024b9a;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            line-height: 1.2;
            position: relative;
            padding: 15px 30px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(2, 75, 154, 0.05) 0%, rgba(3, 101, 214, 0.05) 100%);
            border: 1px solid rgba(2, 75, 154, 0.15);
        }

        .faec-content-intro {
            font-size: clamp(16px, 2vw, 20px);
            color: #555;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
            line-height: 1.7;
        }

        .faec-image-section {
            margin: 50px 0;
            animation: faec-fadeInUp 0.8s ease-out 0.1s both;
        }

        .faec-image-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .faec-image-block {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
        }

        .faec-image-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(2, 75, 154, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .faec-image-block:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
        }

        .faec-image-block:hover::before {
            opacity: 1;
        }

        .faec-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .faec-image-block:hover .faec-image {
            transform: scale(1.05);
        }

        .faec-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 50px;
            animation: faec-fadeInUp 0.8s ease-out 0.2s both;
        }

        .faec-content-block {
            background: #fff;
            padding: 40px 35px;
            border-radius: 18px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(2, 75, 154, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 4px solid #024b9a;
            position: relative;
            overflow: hidden;
        }

        .faec-content-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #024b9a, transparent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .faec-content-block:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 16px 48px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(2, 75, 154, 0.2);
        }

        .faec-content-block:hover::before {
            transform: scaleX(1);
        }

        .faec-block-title {
            font-size: 22px;
            font-weight: 600;
            color: #024b9a;
            margin-bottom: 18px;
            letter-spacing: -0.3px;
            position: relative;
        }

        .faec-block-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #024b9a;
            opacity: 0.3;
        }

        .faec-block-text {
            color: #555;
            line-height: 1.8;
            font-size: 15px;
            font-weight: 400;
        }

        .faec-full-width-section {
            background: linear-gradient(135deg, #161616 0%, #1a1a1a 100%);
            color: white;
            padding: 60px 50px;
            border-radius: 18px;
            margin: 60px 0;
            text-align: center;
            animation: faec-fadeInUp 0.8s ease-out 0.4s both;
            position: relative;
            overflow: hidden;
        }

        .faec-full-width-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #024b9a, #0365d6);
            border-radius: 2px;
        }

        .faec-section-title {
            color: #fff;
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: -0.5px;
        }

        .faec-section-text {
            font-size: clamp(15px, 2vw, 18px);
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.95;
            font-weight: 400;
        }

        .faec-cta-section {
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 60px 50px;
            border-radius: 18px;
            margin-top: 60px;
            animation: faec-fadeInUp 0.8s ease-out 0.6s both;
            border: 1px solid rgba(2, 75, 154, 0.1);
            position: relative;
        }

        .faec-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #024b9a, transparent);
        }

        .faec-cta-title {
            font-size: clamp(20px, 3vw, 26px);
            font-weight: 600;
            color: #024b9a;
            margin-bottom: 15px;
            letter-spacing: -0.3px;
        }

        .faec-cta-subtitle {
            color: #666;
            margin-bottom: 35px;
            font-size: clamp(15px, 2vw, 18px);
            font-weight: 400;
        }

        .faec-contact-button {
            background: linear-gradient(135deg, #024b9a 0%, #0365d6 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 24px rgba(2, 75, 154, 0.3);
        }

        .faec-contact-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .faec-contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 32px rgba(2, 75, 154, 0.4);
        }

        .faec-contact-button:hover::before {
            opacity: 1;
        }

        .faec-contact-button:active {
            transform: translateY(-1px);
        }

        @keyframes faec-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes faec-float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .faec-body {
                padding: 20px 15px;
            }

            .faec-container {
                padding: 40px 25px;
                border-radius: 20px;
            }

            .faec-content-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .faec-content-block,
            .faec-full-width-section,
            .faec-cta-section {
                padding: 30px 25px;
            }

            .faec-image-container {
                gap: 20px;
            }

            .faec-image-block {
                min-width: 100%;
            }

            .faec-image-block:nth-child(2) {
                display: none;
            }

            .faec-contact-button {
                padding: 16px 32px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .faec-container {
                padding: 30px 20px;
            }

            .faec-content-block,
            .faec-full-width-section,
            .faec-cta-section {
                padding: 25px 20px;
            }
        }

        /* Subtle scroll animations */
        @media (prefers-reduced-motion: no-preference) {
            .faec-content-block:nth-child(even) {
                animation-delay: 0.3s;
            }
        }