
        * {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
            box-sizing: border-box;
        }

        body {
            font: 14px/1.357 Arial, Helvetica, sans-serif;
            background: #f3f1eb url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==) repeat;
            color: #494948;
            line-height: 1.5;
        }

        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        header {
            background: #fff;
            border-bottom: 1px solid #dcd6d3;
            padding: 20px 0;
            margin-bottom: 30px;
        }

        .header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            height: 60px;
            width: auto;
            background: #0072bc;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            font-weight: bold;
            font-size: 18px;
        }

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

        nav a {
            color: #494948;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 15px;
            background: #dcd6d3;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background: #0072bc;
            color: #fff;
        }

        main {
            background: #fff;
            padding: 40px 0;
            min-height: 500px;
        }

        .content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1 {
            font-size: 2.1em;
            color: #0072bc;
            margin-bottom: 30px;
            font-weight: bold;
            line-height: 1.2;
        }

        article {
            margin-bottom: 40px;
            font-size: 16px;
            line-height: 1.6;
        }

        article h2 {
            font-size: 1.6em;
            color: #0072bc;
            margin: 30px 0 15px 0;
            font-weight: bold;
        }

        article h3 {
            font-size: 1.3em;
            color: #494948;
            margin: 25px 0 10px 0;
            font-weight: bold;
        }

        article p {
            margin-bottom: 15px;
        }

        .transition-section {
            background: #f3f1eb;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #0072bc;
        }

        .links-section {
            background: #f3f1eb;
            padding: 30px;
            margin: 40px 0;
        }

        .links-section h3 {
            color: #0072bc;
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .links-column ul {
            list-style: none;
            border-top: 1px solid #c6c6c6;
        }

        .links-column li {
            border-bottom: 1px solid #c6c6c6;
            padding: 12px 0;
        }

        .links-column a {
            color: #494948;
            text-decoration: none;
            font-weight: bold;
            display: block;
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }

        .links-column a:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #0072bc;
            font-size: 1.2em;
        }

        .links-column a:hover {
            color: #0072bc;
        }

        footer {
            background: rgba(0, 0, 0, 0.1);
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h5 {
            color: #0072bc;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            font-weight: bold;
        }

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

        .footer-column li {
            padding: 3px 0;
        }

        .footer-column a {
            color: #494948;
            text-decoration: none;
        }

        .footer-column a:hover {
            color: #0072bc;
        }

        .copyright {
            background: #fff;
            border-top: 1px solid #c6c6c6;
            padding: 15px 0;
            text-align: center;
            font-size: 0.9em;
            color: #0072bc;
            margin-top: 20px;
        }

        @media screen and (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            nav a {
                display: block;
                text-align: center;
            }

            h1 {
                font-size: 1.8em;
            }

            .content {
                padding: 0 15px;
            }

            .links-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .transition-section,
            .links-section {
                padding: 20px;
                margin: 30px 0;
            }
        }

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

            article {
                font-size: 14px;
            }

            .transition-section,
            .links-section {
                padding: 15px;
                margin: 20px 0;
            }
        }
    