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

        body {
            font-family: Georgia, serif;
            font-size: 15px;
            line-height: 1.6;
            color: #656464;
            background: #fdfdfd;
        }

        .container {
            max-width: 960px;
            width: 90%;
            margin: 0 auto;
            padding: 20px 0;
        }

        header {
            border-bottom: 1px solid #D7D7D7;
            box-shadow: 0 1px 0 #F5F5F5;
            margin-bottom: 2em;
            padding: 2em 0;
        }

        h1 {
            font-family: "Oswald", sans-serif;
            font-size: 2em;
            font-weight: 600;
            color: #656464;
            text-align: center;
            margin-bottom: 1em;
            text-transform: uppercase;
        }

        h2 {
            font-family: "Oswald", sans-serif;
            font-size: 1.5em;
            font-weight: 600;
            color: #656464;
            margin: 1.5em 0 0.8em;
        }

        h3 {
            font-family: "Oswald", sans-serif;
            font-size: 1.4em;
            font-weight: 600;
            color: #656464;
            margin-bottom: 0.8em;
        }

        article {
            max-width: 100%;
            margin: 0 auto 3em;
        }

        article p {
            margin-bottom: 1.5em;
            text-align: justify;
        }

        article a {
            color: #d00f1a;
            text-decoration: none;
        }

        article a:hover {
            color: #474747;
        }

        .transition-section {
            margin: 3em 0;
        }

        .transition-section p {
            margin-bottom: 1.5em;
        }

        .links-section {
            background: #f9f9f9;
            border: 1px solid #D7D7D7;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            padding: 2em;
            margin: 3em 0;
            border-radius: 3px;
        }

        .links-section h3 {
            font-size: 1.4em;
            color: #656464;
            margin-top: 1.5em;
            margin-bottom: 1em;
            padding-bottom: 0.5em;
            border-bottom: 1px solid #D7D7D7;
            box-shadow: 0 1px 0 #F5F5F5;
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5em;
            margin-bottom: 2em;
        }

        .links-section ul li {
            margin-bottom: 0.3em;
        }

        .links-section ul li a {
            color: #696969;
            text-decoration: none;
            display: block;
            padding: 0.3em 0;
            transition: color 0.2s;
        }

        .links-section ul li a:hover {
            color: #d00f1a;
        }

        footer {
            border-top: 8px solid #E0E0E0;
            padding: 2em 0 1em;
            margin-top: 4em;
            text-align: center;
            font-size: 0.9em;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 2.5em;
            }

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

            article {
                columns: 1;
            }
        }

        @media (min-width: 960px) {
            .container {
                width: 95%;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8em;
            }

            h2 {
                font-size: 1.3em;
            }

            h3 {
                font-size: 1.2em;
            }

            .links-section {
                padding: 1.5em;
            }
        }
    