
        *, body {
            margin: 0;
            padding: 0;
            font-family: "Dosis", Arial, sans-serif;
            font-weight: 400;
            box-sizing: border-box;
        }

        body {
            background: #efe9d9;
            color: #533933;
            line-height: 1.6;
        }

        .clear {
            clear: both;
        }

        #header-wrapper {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><rect fill="%23f5f0e3" width="100" height="10"/></svg>') top center no-repeat;
            background-size: 100% 80px;
            padding-top: 20px;
        }

        #menu {
            width: 100%;
            max-width: 980px;
            margin: 0 auto;
            padding: 20px 20px 15px;
            text-align: center;
        }

        #menu nav p {
            color: #533933;
            font-size: 15px;
            line-height: 1.8;
        }

        #menu nav p a {
            color: #533933;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 300;
            padding: 0 8px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        #menu nav p a:hover {
            font-weight: 500;
            color: #99827c;
        }

        #logoBox {
            width: 100%;
            background: rgba(245, 240, 227, 0.85);
            padding: 30px 0;
            text-align: center;
            margin-bottom: 40px;
        }

        #logo h1 {
            font-size: 2.5em;
            font-weight: 600;
            color: #533933;
            margin: 0;
            padding: 0;
        }

        #main-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }

        article {
            background: rgba(255, 255, 255, 0.6);
            padding: 40px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(83, 57, 51, 0.1);
        }

        article h1 {
            font-size: 2.2em;
            font-weight: 600;
            color: #533933;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        article h2 {
            font-size: 1.8em;
            font-weight: 500;
            color: #533933;
            margin: 30px 0 20px;
        }

        article h3 {
            font-size: 1.4em;
            font-weight: 500;
            color: #533933;
            margin: 25px 0 15px;
        }

        article h4 {
            font-size: 1.2em;
            font-weight: 500;
            color: #533933;
            margin: 20px 0 12px;
        }

        article p {
            margin-bottom: 18px;
            font-size: 1.05em;
            color: #533933;
            text-align: justify;
        }

        article p strong {
            font-weight: 600;
        }

        article a {
            color: #533933;
            text-decoration: underline;
            transition: all 0.3s ease;
        }

        article a:hover {
            color: #99827c;
        }

        #transition-section {
            background: rgba(245, 240, 227, 0.7);
            padding: 35px 40px;
            margin-bottom: 40px;
            border-radius: 8px;
            border-left: 4px solid #ccc3ac;
        }

        #transition-section p {
            margin-bottom: 15px;
            font-size: 1.05em;
            color: #533933;
            text-align: justify;
        }

        #transition-section p:last-child {
            margin-bottom: 0;
        }

        #links-section {
            background: rgba(255, 255, 255, 0.5);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(83, 57, 51, 0.1);
            margin-bottom: 40px;
        }

        #links-section h3 {
            font-size: 1.5em;
            font-weight: 500;
            color: #533933;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ccc3ac;
        }

        #links-section ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            column-count: 2;
            column-gap: 40px;
        }

        #links-section ul li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            break-inside: avoid;
        }

        #links-section ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: #99827c;
            border-radius: 50%;
        }

        #links-section ul li a {
            color: #533933;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            display: inline-block;
        }

        #links-section ul li a:hover {
            color: #99827c;
            padding-left: 5px;
        }

        #footer {
            background: rgba(245, 240, 227, 0.85);
            padding: 30px 20px 20px;
            margin-top: 60px;
            border-top: 3px solid #ccc3ac;
        }

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

        #copyright {
            font-size: 0.9em;
            color: #533933;
            padding: 15px 0;
        }

        #copyright a {
            color: #533933;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        #copyright a:hover {
            color: #99827c;
        }

        @media (max-width: 768px) {
            #menu nav p {
                line-height: 2.2;
            }

            #menu nav p a {
                padding: 5px 6px;
                font-size: 14px;
            }

            #logo h1 {
                font-size: 1.8em;
            }

            article {
                padding: 25px 20px;
            }

            article h1 {
                font-size: 1.7em;
            }

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }

            #transition-section {
                padding: 25px 20px;
            }

            #links-section {
                padding: 25px 20px;
            }

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

        @media (max-width: 480px) {
            #menu nav p a {
                display: block;
                padding: 8px 0;
                border-bottom: 1px solid rgba(153, 130, 124, 0.2);
            }

            #menu nav p a:last-child {
                border-bottom: none;
            }

            #logo h1 {
                font-size: 1.5em;
            }

            article h1 {
                font-size: 1.5em;
            }

            article p,
            #transition-section p {
                text-align: left;
            }
        }
    