
        :root {
            --primary-color: #ffb606;
            --secondary-color: #28166f;
            --dark-color: #111;
            --light-color: #fff;
            --text-color: #606060;
        }

        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; margin: 0; line-height: 1.6; color: var(--text-color); }
        
        header { background: var(--light-color); padding: 1rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--primary-color); }
        .logo { max-width: 150px; }
        
        nav ul { list-style: none; display: flex; gap: 15px; padding: 0; }
        nav a { color: var(--secondary-color); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; }

        .hero { 
            height: 400px; 
            background: linear-gradient(rgba(40, 22, 111, 0.7), rgba(40, 22, 111, 0.7)), #ddd;
            background-size: cover;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            color: white; text-align: center; padding: 20px;
        }

        .container { max-width: 1140px; margin: 0 auto; padding: 2rem; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        
        .card { padding: 1.5rem; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        .card img { border-radius: 4px; margin-bottom: 1rem; width: 100%; height: 200px; object-fit: cover; }
        
        footer { background: var(--dark-color); color: white; text-align: center; padding: 2rem; margin-top: 2rem; }

        @media (max-width: 768px) {
            nav ul { flex-wrap: wrap; justify-content: center; }
            .hero { height: 250px; }
        }
    