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

        body {
            font-family: "Lora", serif;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            background-color: #faf9f7;
        }

        header {
            background: #fff;
            padding: 40px 20px;
            text-align: center;
            border-bottom: 1px solid #f0ede5;
        }

        header h1 {
            font-family: "Montserrat", sans-serif;
            font-size: 2.5em;
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: #333;
            margin: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        article {
            background: #fff;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        article h2 {
            font-family: "Cormorant Garamond", serif;
            font-size: 1.8em;
            font-weight: 400;
            color: #333;
            margin: 30px 0 20px;
            line-height: 1.3;
        }

        article h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: 1.5em;
            font-weight: 400;
            color: #ae9d78;
            margin: 25px 0 15px;
            line-height: 1.3;
        }

        article h4 {
            font-family: "Cormorant Garamond", serif;
            font-size: 1.3em;
            font-weight: 400;
            color: #ae9d78;
            font-style: italic;
            margin: 20px 0 15px;
        }

        article p {
            margin-bottom: 20px;
            color: #333;
        }

        article ul,
        article ol {
            margin: 20px 0 20px 40px;
        }

        article li {
            margin-bottom: 10px;
            list-style-type: disc;
        }

        article ol li {
            list-style-type: decimal;
        }

        article strong {
            font-weight: 700;
        }

        article em {
            font-style: italic;
        }

        .transition-section {
            background: #fff;
            padding: 40px 50px;
            margin-bottom: 40px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .transition-section p {
            margin-bottom: 20px;
            color: #333;
        }

        .links-section {
            background: #fff;
            padding: 50px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .links-section h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: 1.5em;
            font-weight: 400;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0ede5;
        }

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

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

        .links-section a {
            color: #ae9d78;
            text-decoration: none;
            transition: color 0.2s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #333;
        }

        footer {
            background: #ae9d78;
            color: #fff;
            text-align: center;
            padding: 30px 20px;
            font-family: "Montserrat", sans-serif;
            font-size: 11px;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

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

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

        @media only screen and (max-width: 960px) {
            header h1 {
                font-size: 2em;
                letter-spacing: 4px;
            }

            article,
            .transition-section,
            .links-section {
                padding: 30px;
            }

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

        @media only screen and (max-width: 600px) {
            header {
                padding: 25px 15px;
            }

            header h1 {
                font-size: 1.5em;
                letter-spacing: 2px;
            }

            .container {
                padding: 20px 15px;
            }

            article,
            .transition-section,
            .links-section {
                padding: 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

            article h4 {
                font-size: 1.2em;
            }
        }
    