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

        body {
            font-family: Helvetica, Arial, 'Lucida Grande', sans-serif;
            font-size: 0.8125em;
            line-height: 1.5;
            background-color: #F3F3F3;
            color: #333;
        }

        .page-wrapper {
            background-color: #F3F3F3;
        }

        header {
            background-color: #000;
            border-bottom: 5px solid #DC651D;
            padding: 20px 0;
        }

        .header-container {
            max-width: 1020px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo {
            color: #FFF;
            font-size: 2.5em;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 2px;
        }

        .slogan {
            margin-left: 20px;
            color: #9C9C9C;
            font-size: 0.85em;
            line-height: 1.3;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }

        main {
            max-width: 1020px;
            margin: 0 auto;
            padding: 40px 20px 100px;
        }

        .content-wrapper {
            background-color: #FFF;
            padding: 40px;
            margin-bottom: 40px;
        }

        h1 {
            font-family: Georgia, serif;
            font-size: 3.07692em;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #333;
        }

        article {
            font-size: 1.38462em;
            line-height: 1.75;
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 1.5em;
        }

        article h2 {
            font-family: Georgia, serif;
            font-weight: bold;
            font-size: 1.55556em;
            line-height: 1.25;
            margin-top: 1.5em;
            margin-bottom: 0.75em;
        }

        article h3 {
            font-family: Georgia, serif;
            font-weight: bold;
            font-size: 1.33333em;
            line-height: 1.5;
            margin-top: 1.5em;
            margin-bottom: 0.75em;
        }

        article h4 {
            font-family: Georgia, serif;
            font-weight: bold;
            font-size: 1.11111em;
            line-height: 1.75;
            margin-top: 1.5em;
            margin-bottom: 0.75em;
        }

        article a {
            color: #DC651D;
            text-decoration: underline;
        }

        article a:hover {
            color: #e78245;
        }

        .transition-section {
            background-color: #FFF;
            padding: 30px 40px;
            margin-bottom: 40px;
            font-size: 1.15385em;
            line-height: 1.75;
        }

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

        .links-section {
            background-color: #FFF;
            padding: 40px;
        }

        .links-section h3 {
            font-family: Georgia, serif;
            font-size: 1.53846em;
            font-weight: bold;
            margin-bottom: 20px;
            margin-top: 30px;
            color: #333;
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            position: relative;
            padding-left: 20px;
        }

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

        .links-section a {
            color: #333;
            text-decoration: none;
            font-size: 1.07692em;
            line-height: 1.5;
            letter-spacing: 0.5px;
            transition: color 200ms;
        }

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

        footer {
            background-color: #000;
            border-top: 5px solid #DC651D;
            padding: 60px 20px 100px;
            color: #FFF;
        }

        .footer-container {
            max-width: 1020px;
            margin: 0 auto;
        }

        .footer-text {
            font-size: 1.15385em;
            letter-spacing: 1px;
            line-height: 1.75;
        }

        @media only screen and (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .slogan {
                margin-left: 0;
                margin-top: 10px;
            }

            .content-wrapper {
                padding: 30px 20px;
            }

            h1 {
                font-size: 2.2em;
            }

            article {
                font-size: 1.2em;
            }

            .links-section {
                padding: 30px 20px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .transition-section {
                padding: 20px;
            }
        }

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

            h1 {
                font-size: 1.8em;
            }

            article {
                font-size: 1.1em;
            }

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

            .links-section {
                padding: 20px 15px;
            }
        }
    