
        :root {
            --primary: #3f2d51;
            --accent: #4fe0be;
            --text: #2c3e50;
            --light: #f4f4f4;
            --white: #ffffff;
        }
        body { font-family: 'Arial', sans-serif; margin: 0; color: var(--text); line-height: 1.6; }
        header { background: var(--white); padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--primary); }
        .logo-placeholder { width: 200px; height: 60px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: bold; }
        nav ul { list-style: none; display: flex; gap: 20px; }
        nav a { text-decoration: none; color: var(--primary); font-weight: bold; }
        .hero { height: 400px; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/611ebcaa8f83c0.93361938331.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: var(--white); text-align: center; }
        .content { padding: 40px 10%; max-width: 1200px; margin: auto; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
        .card { border: 1px solid #ddd; padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        footer { background: var(--primary); color: var(--white); padding: 40px 10%; text-align: center; }
        .btn { background: var(--accent); color: var(--primary); padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; }
        @media (max-width: 768px) { nav ul { display: none; } }
    