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

        html, body {
            font-family: Georgia, serif;
            color: #C7C7C7;
            background: #1D211A;
            line-height: 1.6;
        }

        body {
            background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMxRDIxMUEiLz48L3N2Zz4=) repeat-x top;
        }

        #wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            padding: 25px 0 20px;
            border-bottom: 1px solid #3a3a3a;
            margin-bottom: 30px;
        }

        header h2 {
            font-size: 30px;
            font-weight: normal;
            margin-bottom: 5px;
        }

        header h2 a {
            color: #C7C7C7;
            text-decoration: none;
        }

        header h2 a:hover {
            color: #fff;
        }

        header p {
            font-size: 12px;
            font-style: italic;
            font-weight: bolder;
            color: #BBA4A4;
        }

        nav {
            margin-top: 20px;
        }

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

        nav ul li {
            display: inline-block;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            font-family: "Trebuchet MS", sans-serif;
            font-weight: bold;
            padding: 10px 15px;
            display: block;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #AC6448;
        }

        main {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            font-family: Georgia, serif;
            font-size: 35px;
            font-weight: normal;
            font-style: italic;
            color: #C7C7C7;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 1px solid #3a3a3a;
        }

        article {
            background: rgba(255, 255, 255, 0.02);
            padding: 30px;
            border-radius: 5px;
            margin-bottom: 40px;
        }

        article p {
            font-size: 14px;
            font-family: Arial, Helvetica, sans-serif;
            color: #C7C7C7;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        article h2, article h3, article h4 {
            color: #fff;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: normal;
        }

        article h2 {
            font-size: 28px;
        }

        article h3 {
            font-size: 22px;
        }

        article h4 {
            font-size: 18px;
        }

        article a {
            color: #AC6448;
            text-decoration: none;
            border-bottom: 1px solid #47413E;
        }

        article a:hover {
            color: #C78F7A;
        }

        .transition-section {
            max-width: 900px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        .transition-section p {
            font-size: 14px;
            font-family: Arial, Helvetica, sans-serif;
            color: #C7C7C7;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .links-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 5px;
        }

        .links-section h3 {
            font-family: Georgia, serif;
            font-size: 20px;
            color: #fff;
            font-weight: normal;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid #3a3a3a;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
            margin-bottom: 30px;
        }

        .links-section ul li {
            padding: 8px 0;
        }

        .links-section ul li a {
            color: #AC6448;
            text-decoration: none;
            font-size: 13px;
            font-family: Arial, Helvetica, sans-serif;
            display: inline-block;
            transition: color 0.3s;
        }

        .links-section ul li a:hover {
            color: #C78F7A;
        }

        footer {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 20px;
            border-top: 1px solid #3a3a3a;
            color: #7F584E;
        }

        footer p {
            font-family: Georgia, serif;
            font-size: 11px;
            line-height: 1.6;
            text-align: center;
        }

        footer a {
            color: #8C6B62;
            text-decoration: none;
        }

        footer a:hover {
            color: #AE948C;
        }

        @media (max-width: 768px) {
            header h2 {
                font-size: 24px;
            }

            nav ul {
                flex-direction: column;
                gap: 5px;
            }

            nav ul li a {
                padding: 8px 10px;
            }

            h1 {
                font-size: 28px;
            }

            article {
                padding: 20px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            header h2 {
                font-size: 20px;
            }

            h1 {
                font-size: 24px;
            }

            article {
                padding: 15px;
            }

            article p, .transition-section p {
                font-size: 13px;
            }
        }
    