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

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #555;
            background-color: #595959;
        }

        .container {
            max-width: 1012px;
            margin: 0 auto;
            padding: 0 14px;
        }

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

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo h1 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2em;
            color: #C71838;
            margin: 0;
        }

        .logo span {
            font-size: 0.6em;
            color: #666;
            display: block;
        }

        nav {
            background-color: #C71838;
            padding: 0;
        }

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

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 12px 25px;
            color: #f1f1f1;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 15px;
            font-weight: normal;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: #B50420;
            color: #fff;
        }

        .main-content {
            background-color: #fff;
            padding: 30px 0;
            min-height: 400px;
        }

        .content-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        h1 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2em;
            color: #C71838;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f5f5f5;
        }

        article h2 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.5em;
            color: #333;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.3em;
            color: #444;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        article p {
            margin-bottom: 15px;
            text-align: left;
            line-height: 1.8;
        }

        article ul,
        article ol {
            margin: 15px 0 15px 30px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #f8f8f8;
            border-left: 3px solid #C71838;
        }

        .transition-section p {
            margin-bottom: 10px;
        }

        .links-section {
            margin: 40px 0;
            padding: 30px 20px;
            background-color: #f5f5f5;
            border-top: 2px solid #C71838;
        }

        .links-section h3 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.4em;
            color: #C71838;
            margin-bottom: 15px;
            margin-top: 25px;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

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

        .links-section ul li a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
            padding: 3px 0;
        }

        .links-section ul li a:hover {
            color: #C71838;
            text-decoration: underline;
        }

        footer {
            background-color: #ECF0F1;
            padding: 30px 0;
            margin-top: 40px;
        }

        .footer-content {
            text-align: center;
            color: #555;
            font-size: 0.9em;
        }

        .footer-content p {
            margin: 5px 0;
        }

        @media only screen and (max-width: 768px) {
            .container {
                padding: 0 10px;
            }

            nav ul {
                flex-direction: column;
            }

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

            nav ul li a {
                padding: 10px;
            }

            h1 {
                font-size: 1.5em;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.1em;
            }

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

            .content-wrapper {
                padding: 0 15px;
            }
        }

        @media only screen and (max-width: 480px) {
            .logo h1 {
                font-size: 1.5em;
            }

            h1 {
                font-size: 1.3em;
            }

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