
        :root {
            --primary-bg: #eef6ff;
            --text-color: #2a2a2a;
            --accent-color: #3964c1;
            --secondary-bg: #f7f7f7;
            --border-color: #ccc;
        }

        body { 
            font-family: 'EB Garamond', serif; 
            background-color: var(--primary-bg); 
            color: var(--text-color); 
            line-height: 1.6;
            margin: 0;
        }

        header {
            padding: 2rem;
            text-align: center;
            background: #fff;
            border-bottom: 4px solid var(--accent-color);
        }

        .logo-img { max-width: 300px; height: auto; }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 1rem;
        }

        nav a { color: var(--accent-color); font-weight: bold; text-transform: uppercase; text-decoration: none; font-family: Montserrat, sans-serif; }

        .container { max-width: 1000px; margin: 2rem auto; padding: 0 1rem; }

        .hero-section {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #1d3261 0%, #3964c1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            border-radius: 8px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .hero-section h1 { font-family: 'Lora', serif; font-size: 2.5rem; }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card { 
            background: white; 
            padding: 1.5rem; 
            border-radius: 8px; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 1rem;
        }

        footer {
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .hero-section { height: 200px; }
            .hero-section h1 { font-size: 1.8rem; }
        }
    