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

        body {
            font-family: "Muli", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #727272;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: #9dc6d8;
            text-decoration: none;
            transition: all 0.3s;
        }

        a:hover {
            color: #0c242e;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Varela Round", sans-serif;
            color: #202020;
            letter-spacing: 0.0825em;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        h1 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        h2 {
            font-size: 28px;
        }

        h3 {
            font-size: 21px;
            margin-top: 30px;
        }

        h4 {
            font-size: 18px;
        }

        h5 {
            font-size: 15px;
        }

        p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .header {
            background: #202020;
            padding: 20px 0;
            border-bottom: 3px solid #9dc6d8;
        }

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

        .logo {
            color: #9dc6d8;
            font-family: "Varela Round", sans-serif;
            font-size: 24px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .main-content {
            padding: 60px 0;
            background: #fff;
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        article {
            margin-bottom: 50px;
        }

        article h2,
        article h3,
        article h4,
        article h5 {
            margin-top: 35px;
            margin-bottom: 20px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.8;
        }

        .transition-section {
            margin: 50px 0;
            padding: 40px;
            background: #f8f8f8;
            border-left: 4px solid #9dc6d8;
        }

        .transition-section p {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
        }

        .links-section {
            padding: 60px 40px;
            background: #f5f5f5;
            border-top: 2px solid #9dc6d8;
            margin-top: 60px;
        }

        .links-section h3 {
            font-size: 18px;
            color: #202020;
            margin-bottom: 20px;
            margin-top: 40px;
            padding-bottom: 10px;
            border-bottom: 2px solid #9dc6d8;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

        .links-section li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            break-inside: avoid;
        }

        .links-section li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #9dc6d8;
            font-size: 14px;
        }

        .links-section a {
            color: #727272;
            font-size: 14px;
            line-height: 1.6;
            display: inline-block;
        }

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

        .footer {
            background: #202020;
            color: #fff;
            padding: 40px 0;
            margin-top: 60px;
            border-top: 7px solid #9dc6d8;
        }

        .footer p {
            color: #fff;
            margin: 0;
            font-size: 13px;
        }

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

            h2 {
                font-size: 24px;
            }

            h3 {
                font-size: 18px;
            }

            .main-content {
                padding: 40px 0;
            }

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

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

            .links-section ul {
                column-count: 1;
            }

            article p {
                font-size: 14px;
            }
        }

        @media only screen and (max-width: 479px) {
            h1 {
                font-size: 24px;
            }

            .header {
                padding: 15px 0;
            }

            .main-content {
                padding: 30px 0;
            }

            .links-section {
                margin-top: 40px;
            }
        }
    