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

        html {
            overflow-y: scroll;
        }

        body {
            background: #fff;
            font-size: 16px;
            color: #000;
            font-family: "Open Sans", sans-serif;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: #fff;
            border-bottom: 3px solid #86328b;
            padding: 20px 0;
        }

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

        .logo {
            font-family: "Lato", sans-serif;
            font-size: 1.5em;
            font-weight: 700;
            color: #86328b;
            text-decoration: none;
            text-transform: uppercase;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        nav a {
            text-decoration: none;
            color: #86328b;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95em;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #f7941e;
        }

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

        h1 {
            font-family: "Lato", sans-serif;
            font-size: 2.5em;
            color: #000;
            font-weight: 400;
            text-transform: uppercase;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #86328b;
            line-height: 1.2;
        }

        article h2 {
            font-family: "Lato", sans-serif;
            font-size: 1.8em;
            color: #000;
            font-weight: 500;
            margin: 30px 0 20px;
        }

        article h3 {
            font-family: "Lato", sans-serif;
            font-size: 1.4em;
            color: #86328b;
            font-weight: 600;
            margin: 25px 0 15px;
        }

        article h4 {
            font-family: "Lato", sans-serif;
            font-size: 1.2em;
            color: #000;
            font-weight: 600;
            margin: 20px 0 10px;
        }

        article p {
            margin-bottom: 20px;
            line-height: 1.7;
            color: #333;
        }

        article ul, article ol {
            margin: 20px 0 20px 40px;
        }

        article li {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        article a {
            color: #86328b;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        article a:hover {
            color: #f7941e;
        }

        .transition-section {
            margin: 50px 0;
            padding: 30px;
            background: #f9f9f9;
            border-left: 4px solid #86328b;
        }

        .transition-section p {
            margin-bottom: 15px;
            line-height: 1.7;
            color: #333;
        }

        .links-section {
            margin: 50px 0;
            padding: 40px;
            background: #f5f5f5;
            border-top: 3px solid #86328b;
        }

        .links-section h3 {
            font-family: "Lato", sans-serif;
            font-size: 1.5em;
            color: #86328b;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .links-section ul {
            list-style: none;
            columns: 2;
            column-gap: 40px;
            margin-bottom: 30px;
        }

        .links-section li {
            margin-bottom: 12px;
            break-inside: avoid;
        }

        .links-section a {
            color: #86328b;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            display: inline-block;
        }

        .links-section a:hover {
            color: #f7941e;
        }

        .links-section a::before {
            content: "→ ";
            color: #f7941e;
            margin-right: 5px;
        }

        footer {
            background: #000;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            color: #fff;
            font-family: "Lato", sans-serif;
            font-size: 1.2em;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #f7941e;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #bcbec0;
            font-size: 0.9em;
        }

        @media screen and (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
                width: 100%;
                text-align: center;
            }

            .links-section ul {
                columns: 1;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 30px 20px;
            }

            main {
                padding: 30px 0;
            }
        }

        @media screen and (max-width: 480px) {
            h1 {
                font-size: 1.6em;
            }

            article h2 {
                font-size: 1.3em;
            }

            .logo {
                font-size: 1.2em;
            }

            nav a {
                font-size: 0.9em;
            }
        }
    