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

        body {
            margin: 0;
            background-color: #1c1b17;
            font-family: Georgia, serif;
            font-size: 15px;
            color: #535250;
            line-height: 1.6;
        }

        .wrapper {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .top {
            width: 100%;
            background: #113c2a;
            height: 64px;
        }

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

        .logo img {
            border: none;
            height: 50px;
        }

        .navigation {
            display: flex;
            align-items: center;
        }

        .navigation ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .navigation ul li {
            margin: 0;
        }

        .navigation ul li a {
            font-family: Georgia, Times New Roman, serif;
            font-size: 15px;
            color: #d2cfc6;
            text-decoration: none;
            padding: 20px 10px;
            border-right: 1px solid #d2cfc6;
            display: block;
            transition: color 0.3s ease;
        }

        .navigation ul li:last-child a {
            border-right: none;
        }

        .navigation ul li a:hover {
            color: #fff;
        }

        .main-content {
            max-width: 1024px;
            margin: 0 auto;
            background: #fffcf5;
            min-height: 600px;
            padding: 40px 30px;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        h1 {
            color: #000;
            font-family: Georgia, serif;
            border-bottom: 1px solid #b6b3ac;
            margin: 0 0 30px 0;
            padding-bottom: 15px;
            font-size: 32px;
        }

        h2 {
            font-size: 24px;
            color: #2b634b;
            margin: 25px 0 15px 0;
        }

        h3 {
            font-size: 20px;
            color: #113C2A;
            margin: 20px 0 15px 0;
        }

        p {
            font-size: 15px;
            margin: 15px 0;
            line-height: 1.6;
            color: #535250;
        }

        a {
            text-decoration: underline;
            color: #113c2a;
            transition: color 0.3s ease;
        }

        a:hover {
            text-decoration: none;
            color: #2b634b;
        }

        .transition-section {
            margin: 40px 0;
            padding: 20px 0;
            border-top: 1px solid #e0e0e0;
        }

        .links-section {
            background: #f8f6f0;
            padding: 30px;
            margin: 30px 0;
            border-radius: 8px;
            border: 1px solid #e0ddd6;
        }

        .links-section h3 {
            color: #113C2A;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #113C2A;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin: 0;
            padding: 0;
        }

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

        .links-section li a {
            color: #113c2a;
            text-decoration: none;
            padding: 5px 10px;
            display: block;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .links-section li a:hover {
            background-color: #e8e6e0;
            color: #2b634b;
        }

        .footer {
            background: #113c2a;
            color: #e2e1dd;
            padding: 30px 0;
            margin-top: 50px;
        }

        .footer-contents {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer a {
            text-decoration: none;
            color: #e2e1dd;
            margin: 0 5px;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .footer-menu {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2b634b;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                height: auto;
                padding: 10px 20px;
            }

            .navigation {
                margin-top: 10px;
                width: 100%;
            }

            .navigation ul {
                flex-direction: column;
                width: 100%;
            }

            .navigation ul li a {
                border-right: none;
                border-bottom: 1px solid #d2cfc6;
                padding: 15px 10px;
                text-align: center;
            }

            .navigation ul li:last-child a {
                border-bottom: none;
            }

            .main-content {
                margin: 10px;
                padding: 20px 15px;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 18px;
            }

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

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

            .footer-contents {
                padding: 0 15px;
            }

            .footer-menu {
                font-size: 14px;
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                margin: 5px;
                padding: 15px 10px;
            }

            h1 {
                font-size: 24px;
            }

            .links-section {
                padding: 15px 10px;
            }
        }
    