        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            line-height: 1.65;
            color: #3d3d3d;
            background: #ffffff;
            font-size: 18px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 30px;
        }

        header {
            background: #ffffff;
            border-bottom: 1px solid #e0e0e0;
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header h1 {
            font-size: 20px;
            font-weight: 600;
            color: #2d2d2d;
            margin: 0;
            padding: 0;
            line-height: 1.2;
        }

        header h1 a {
            color: #2d2d2d;
            text-decoration: none;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: #6d6d6d;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #8b6f47;
        }

        .lang-switcher {
            display: flex;
            gap: 5px;
            font-size: 14px;
            align-items: center;
        }

        .lang-switcher a {
            color: #8d8d8d;
            text-decoration: none;
            padding: 4px 6px;
            font-size: 14px;
            transition: color 0.2s;
            font-weight: 500;
        }

        .lang-switcher a.active {
            color: #2d2d2d;
            font-weight: 600;
        }

        .lang-switcher span {
            color: #d0d0d0;
        }

        main {
            padding: 80px 0;
            min-height: 60vh;
        }

        h1 {
            font-size: 36px;
            font-weight: 600;
            color: #2d2d2d;
            margin-bottom: 40px;
        }

        h2 {
            font-size: 24px;
            font-weight: 600;
            color: #2d2d2d;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        p {
            margin-bottom: 15px;
            color: #5d5d5d;
        }

        a {
            color: #8b6f47;
            text-decoration: underline;
        }

        a:hover {
            color: #6d5436;
        }

        footer {
            border-top: 1px solid #e0e0e0;
            padding: 40px 0;
            background: #ffffff;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            color: #8d8d8d;
        }

        footer a {
            color: #8d8d8d;
            text-decoration: none;
            margin-left: 20px;
        }

        footer a:hover {
            color: #3d3d3d;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            nav ul {
                display: none;
            }

            h1 {
                font-size: 28px;
            }

            main {
                padding: 60px 0;
            }
        }
