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

        body {
            font-family: 'Cormorant', 'Georgia', serif;
            color: #514535;
            background-color: #faf9f5;
            line-height: 1.7;
        }

        header {
            background-color: #514535;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 28px;
            font-weight: 600;
            color: #caba9f;
            text-decoration: none;
        }

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

        nav a {
            color: #faf9f5;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #caba9f;
        }

        .hero-section {
            background: linear-gradient(135deg, #514535 0%, #6d5a47 100%);
            color: #faf9f5;
            padding: 80px 20px;
            text-align: center;
        }

        h1 {
            font-size: 48px;
            font-weight: 500;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.3;
            color: #faf9f5;
        }

        .content-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        article {
            background: #ffffff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(81, 69, 53, 0.08);
            margin-bottom: 60px;
        }

        article h2 {
            font-size: 36px;
            color: #514535;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        article h3 {
            font-size: 28px;
            color: #6d5a47;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        article h4 {
            font-size: 22px;
            color: #514535;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: 500;
        }

        article p {
            font-size: 18px;
            margin-bottom: 20px;
            color: #514535;
            line-height: 1.8;
        }

        article p:first-child {
            font-size: 20px;
            color: #6d5a47;
        }

        .transition-section {
            background: #f5f0e8;
            padding: 40px 50px;
            border-left: 4px solid #caba9f;
            margin-bottom: 60px;
            border-radius: 4px;
        }

        .transition-section p {
            font-size: 18px;
            color: #514535;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .links-section {
            background: #ffffff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(81, 69, 53, 0.08);
            margin-bottom: 60px;
        }

        .links-section h2 {
            font-size: 36px;
            color: #514535;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 500;
        }

        .links-section h3 {
            font-size: 24px;
            color: #514535;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 500;
            border-bottom: 2px solid #caba9f;
            padding-bottom: 10px;
        }

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

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

        .links-section a {
            color: #514535;
            text-decoration: none;
            font-size: 17px;
            display: inline-block;
            transition: all 0.3s;
            padding-left: 20px;
            position: relative;
        }

        .links-section a:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #caba9f;
            transition: left 0.3s;
        }

        .links-section a:hover {
            color: #b56953;
            padding-left: 25px;
        }

        .links-section a:hover:before {
            left: 5px;
        }

        footer {
            background-color: #514535;
            color: #faf9f5;
            padding: 40px 20px 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-content p {
            font-size: 15px;
            color: #caba9f;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
            }

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

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

            article {
                padding: 30px 25px;
            }

            article h2 {
                font-size: 28px;
            }

            article h3 {
                font-size: 24px;
            }

            article p {
                font-size: 16px;
            }

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

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

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

            .hero-section {
                padding: 50px 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 26px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }
        }
    