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

        body {
            background: #E1E1E1;
            color: #333;
            font-size: 14px;
            font-family: Arial, Tahoma, Verdana, sans-serif;
            line-height: 1.7;
            margin: 0;
            padding: 0;
        }

        a {
            color: #E74914;
            text-decoration: none;
        }

        a:hover {
            color: #E74914;
            text-decoration: underline;
        }

        #header {
            background: linear-gradient(to bottom, #333 0%, #1a1a1a 100%);
            padding: 25px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        #header .wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #title {
            color: #FFF;
            font-size: 28px;
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: normal;
            margin: 0;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        #nav {
            background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
            border-bottom: 1px solid #ccc;
            box-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }

        #nav .wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
        }

        #nav li {
            margin: 0;
            padding: 0;
        }

        #nav li a {
            display: block;
            color: #000;
            font-size: 12px;
            padding: 12px 15px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-left: 1px solid #ddd;
            transition: all 0.3s ease;
        }

        #nav li:first-child a {
            border-left: none;
        }

        #nav li a:hover {
            background: #FFF;
            color: #E74914;
            text-decoration: none;
        }

        #main-content {
            max-width: 960px;
            margin: 30px auto;
            padding: 0 20px;
        }

        #content-area {
            background: #FFF;
            padding: 40px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 3px;
            margin-bottom: 30px;
        }

        h1 {
            color: #333;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 32px;
            font-style: italic;
            font-weight: normal;
            margin: 0 0 25px 0;
            padding: 0 0 15px 0;
            border-bottom: 2px solid #E1E1E1;
        }

        h2 {
            color: #333;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 24px;
            font-style: italic;
            font-weight: normal;
            margin: 25px 0 15px 0;
        }

        h3 {
            color: #333;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 20px;
            font-style: italic;
            font-weight: normal;
            margin: 20px 0 12px 0;
        }

        h4, h5, h6 {
            color: #333;
            font-family: Georgia, 'Times New Roman', serif;
            font-style: italic;
            font-weight: normal;
            margin: 15px 0 10px 0;
        }

        article p {
            margin: 0 0 20px 0;
            line-height: 1.8;
        }

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

        article li {
            margin: 5px 0;
            padding-left: 5px;
        }

        #transition-section {
            background: #FFF;
            padding: 30px 40px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 3px;
            margin-bottom: 30px;
        }

        #transition-section p {
            margin: 0 0 15px 0;
            line-height: 1.8;
        }

        #links-section {
            background: #FFF;
            padding: 40px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 3px;
            margin-bottom: 30px;
        }

        #links-section h3 {
            color: #333;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 20px;
            font-style: italic;
            margin: 25px 0 15px 0;
            padding-top: 15px;
            border-top: 1px solid #E1E1E1;
        }

        #links-section h3:first-child {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        #links-section ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
        }

        #links-section li {
            padding: 8px 0 8px 18px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><circle cx="5" cy="5" r="3" fill="%23E74914"/></svg>') no-repeat left center;
            line-height: 1.6;
        }

        #links-section a {
            color: #E74914;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        #links-section a:hover {
            color: #333;
            text-decoration: underline;
        }

        #footer {
            background: linear-gradient(to bottom, #333 0%, #1a1a1a 100%);
            color: #CCC;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 12px;
            padding: 20px 0;
            letter-spacing: 2px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            text-transform: uppercase;
            text-align: center;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
        }

        #footer .wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #footer p {
            margin: 5px 0;
        }

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

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

        @media screen and (max-width: 768px) {
            #header .wrap,
            #nav .wrap,
            #main-content,
            #footer .wrap {
                padding: 0 15px;
            }

            #title {
                font-size: 22px;
                letter-spacing: 2px;
            }

            #nav ul {
                flex-direction: column;
            }

            #nav li a {
                border-left: none;
                border-bottom: 1px solid #ddd;
                padding: 10px 15px;
            }

            #content-area,
            #transition-section,
            #links-section {
                padding: 25px 20px;
            }

            h1 {
                font-size: 26px;
            }

            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 18px;
            }

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

        @media screen and (max-width: 480px) {
            body {
                font-size: 13px;
            }

            #title {
                font-size: 18px;
                letter-spacing: 1px;
            }

            #nav li a {
                font-size: 11px;
                padding: 8px 10px;
            }

            h1 {
                font-size: 22px;
            }

            h2 {
                font-size: 19px;
            }

            h3 {
                font-size: 16px;
            }

            #content-area,
            #transition-section,
            #links-section {
                padding: 20px 15px;
            }
        }
    