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

        body {
            font-family: Georgia, 'Times New Roman', serif;
            line-height: 1.7;
            color: #1a1a1a;
            background: linear-gradient(135deg, #FFFAF5 0%, #f5ebe0 100%);
            min-height: 100vh;
        }

        header {
            background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
            padding: 2rem 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #32590C 0%, #4a7f14 50%, #32590C 100%);
        }

        h1 {
            color: #CCCC33;
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        nav {
            background: #32590C;
            padding: 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        nav a {
            color: #FFFAF5;
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            font-weight: bold;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border-radius: 4px;
            text-transform: lowercase;
            letter-spacing: 0.5px;
        }

        nav a:hover {
            background: #4a7f14;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        article {
            background: #FFFAF5;
            padding: 3rem clamp(1.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-left: 6px solid #32590C;
        }

        article h2, article h3, article h4 {
            color: #32590C;
            margin: 2rem 0 1rem 0;
            line-height: 1.3;
        }

        article h2 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            border-bottom: 2px solid #CCCC33;
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
        }

        article h4 {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        }

        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .transition-section {
            background: linear-gradient(135deg, #32590C 0%, #4a7f14 100%);
            padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
            margin-bottom: 3rem;
            border-radius: 8px;
            color: #FFFAF5;
            box-shadow: 0 6px 24px rgba(50, 89, 12, 0.3);
        }

        .transition-section p {
            font-size: clamp(1rem, 2vw, 1.15rem);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .links-section {
            background: #FFFAF5;
            padding: 3rem clamp(1.5rem, 5vw, 4rem);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 3px solid #32590C;
            margin-bottom: 3rem;
        }

        .links-section h2 {
            color: #32590C;
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            padding-bottom: 1rem;
            border-bottom: 3px solid #CCCC33;
        }

        .links-section h3 {
            color: #1a1a1a;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin: 2rem 0 1rem 0;
            padding-left: 0.5rem;
            border-left: 4px solid #32590C;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 0.8rem 2rem;
            margin-bottom: 2rem;
        }

        .links-section li {
            position: relative;
            padding-left: 1.5rem;
        }

        .links-section li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: #CCCC33;
            font-size: 0.8rem;
        }

        .links-section a {
            color: #32590C;
            text-decoration: none;
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #4a7f14;
            transform: translateX(5px);
            text-decoration: underline;
        }

        footer {
            background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
            padding: 2rem 1rem;
            margin-top: 4rem;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
        }

        footer::before {
            content: '';
            display: block;
            height: 4px;
            background: linear-gradient(90deg, #32590C 0%, #CCCC33 50%, #32590C 100%);
            margin-bottom: 2rem;
        }

        footer nav {
            background: transparent;
            box-shadow: none;
        }

        .copyright {
            text-align: center;
            color: #CCCC33;
            font-size: 0.85rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: stretch;
            }

            nav a {
                text-align: center;
                width: 100%;
            }

            article, .links-section {
                padding: 2rem 1.5rem;
            }

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

        @media (max-width: 480px) {
            h1 {
                letter-spacing: 1px;
            }

            article p {
                text-align: left;
            }
        }
    