
        :root {
            --primary-color: #1a1a1a;
            --accent-color: #1e73be;
            --text-color: #222;
            --bg-color: #f4f4f4;
            --white: #ffffff;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
        }

        header {
            background: var(--white);
            border-bottom: 3px solid var(--accent-color);
            padding: 20px;
            text-align: center;
        }

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

        nav {
            background: var(--primary-color);
            color: var(--white);
            padding: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9em;
            text-transform: uppercase;
        }

        .hero {
            width: 100%;
            height: 300px;
            background-image: url('/assets/banner_wom.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 20px;
            background: var(--white);
        }

        h1, h2 { color: var(--accent-color); }

        footer {
            background: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }

        @media (min-width: 768px) {
            nav { justify-content: space-around; }
        }
    