
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero-section {
            background: linear-gradient(135deg, #223777 0%, #1a2a5e 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(34, 55, 119, 0.2);
        }

        .hero-title {
            font-size: 2.8em;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .content-section {
            background: white;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .section-title {
            color: #223777;
            font-size: 2.2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #223777;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #000000;
        }

        .section-content {
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .image-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .image-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-item:hover img {
            transform: scale(1.05);
        }

        .image-caption {
            padding: 20px;
            font-size: 1em;
            color: #223777;
            font-weight: 600;
            text-align: center;
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
        }

        .highlight-box {
            background: linear-gradient(135deg, #223777, #1a2a5e);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(34, 55, 119, 0.2);
        }

        .highlight-text {
            font-size: 1.2em;
            text-align: center;
            font-style: italic;
            line-height: 1.6;
        }

        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #223777 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            border-radius: 15px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-title {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .cta-text {
            font-size: 1.2em;
            margin-bottom: 35px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            background: white;
            color: #223777;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,255,255,0.2);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,255,255,0.3);
            background: #f8f9fa;
        }

        .inline-cta {
            background: linear-gradient(45deg, #e3f2fd, #bbdefb);
            border-left: 5px solid #223777;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            font-style: italic;
            font-size: 1.1em;
            color: #223777;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .stat-item {
            background: white;
            padding: 30px;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5em;
            color: #223777;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #666;
            font-size: 1em;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .hero-section {
                padding: 40px 20px;
            }

            .hero-title {
                font-size: 2.2em;
            }

            .hero-subtitle {
                font-size: 1.1em;
            }

            .content-section {
                padding: 25px;
            }

            .section-title {
                font-size: 1.8em;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .image-gallery {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8em;
            }

            .section-title {
                font-size: 1.5em;
            }

            .cta-title {
                font-size: 2em;
            }
        }
    