 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width:1000px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 30px 20px;
            border-radius: 0 0 20px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('static/bg.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        .header-content {
            position: relative;
            z-index: 1;
        }
        h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ffd700;
        }
        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        .flags {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .flag {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }
        .flag img {
            width: 40px;
            height: 25px;
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .section {
            background: white;
            margin: 30px 0;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h2 {
            color: #1e3c72;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
        }
        .highlight {
            color: #2a5298;
            font-weight: bold;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .card {
            background: #f8f9fa;
            border-left: 0px solid #2a5298;
            padding: 25px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card h3 {
            color: #1e3c72;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card i {
            color: #ffd700;
            font-size: 1.5rem;
        }
        .image-placeholder {
            background: #e9ecef;
           
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
            color: #6c757d;
            font-style: italic;
            overflow: hidden;
        }
        .image-placeholder img {
            width: 100%;
            
            object-fit: cover;
        }
        .testimonial {
            background: linear-gradient(135deg, #2a5298, #1e3c72);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }
        .testimonial h3 {
            color: #ffd700;
            margin-bottom: 15px;
        }
        .cta {
            text-align: center;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #1e3c72;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .cta h2 {
            color: #1e3c72;
            border-bottom: none;
        }
        .btn {
            display: inline-block;
            background: #1e3c72;
            color: yellow;
            padding: 15px 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: 2px solid #1e3c72;
        }
        .btn:hover {
            background: #1e3c72;
           color:yellow;
        }
        footer {
            text-align: center;
            padding: 30px;
            background: #1e3c72;
            color: white;
            border-radius: 20px 20px 0 0;
            margin-top: 40px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .section {
                padding: 20px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .flags {
                flex-direction: column;
                gap: 15px;
            }
        }