
        * {
            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: #121a2c;
            min-height: 100vh;
            padding: 20px;
        }
    
        .faec-container {
            border-right: 4px solid #024b9a;
            border-left: 4px solid #024b9a;
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
    
        .faec-content-header {
            text-align: center;
            margin-bottom: 50px;
            animation: faec-fadeInUp 0.8s ease-out;
        }
    
        .faec-content-title {
            font-size: 30px;
            font-weight: 700;
            color: #024b9a;
            margin-bottom: 15px;
            background: #024b9a;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
    
        .faec-content-intro {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
    
        .faec-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            animation: faec-fadeInUp 0.8s ease-out 0.2s both;
        }
    
        .faec-content-block {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid #024b9a;
        }
    
        .faec-content-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
    
        .faec-block-title {
            font-size: 20px;
            font-weight: 600;
            color: #024b9a;
            margin-bottom: 15px;
        }
    
        .faec-block-text {
            color: #666;
            line-height: 1.7;
        }
    
        .faec-full-width-section {
            background: #161616;
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            animation: faec-fadeInUp 0.8s ease-out 0.4s both;
        }
    
        .faec-section-title {
            color: #fff;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }
    
        .faec-section-text {
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto;
        }
    
        .faec-cta-section {
            text-align: center;
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
            animation: faec-fadeInUp 0.8s ease-out 0.6s both;
        }
    
        .faec-cta-title {
            font-size: 20px;
            font-weight: 600;
            color: #024b9a;
            margin-bottom: 10px;
        }
    
        .faec-cta-subtitle {
            color: #666;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
    
        .faec-contact-button {
            background: #024b9a;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
    
        .faec-contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }
    
        @keyframes faec-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
    
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
        @media (max-width: 768px) {
            .faec-container {
                padding: 20px;
            }
    
            .faec-content-title {
                font-size: 24px;
            }
    
            .faec-content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
    
            .faec-content-block,
            .faec-full-width-section,
            .faec-cta-section {
                padding: 25px;
            }
        }