
        /* Reset */
        html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, ul, li, article, section {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            vertical-align: baseline;
        }

        body {
            color: #222;
            font-family: 'Lato', sans-serif;
            font-size: 100%;
            font-weight: 400;
            line-height: 1.5;
            background: #fff;
        }

        /* Header */
        #header-wrap {
            background: #eb0254;
            width: 100%;
            height: 50px;
            position: relative;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .logo {
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
        }

        /* Navigation */
        .nav-menu {
            background: #eb0254;
            border-top: 1px solid #ddd;
            padding: 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .nav-list li {
            margin-right: 20px;
        }

        .nav-list li:last-child {
            margin-right: 0;
        }

        .nav-list a {
            color: #ffffff;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 400;
            line-height: 100%;
            padding: 18px 14px;
            display: block;
            text-transform: uppercase;
            transition: color .3s;
        }

        .nav-list a:hover {
            color: #fdacc8;
        }

        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        h1 {
            color: #222;
            font-family: 'Work Sans', sans-serif;
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 110%;
            margin-bottom: 30px;
            text-align: center;
        }

        article {
            margin-bottom: 30px;
        }

        article p {
            color: #222;
            font-size: 1rem;
            font-weight: 400;
            line-height: 155%;
            margin-bottom: 20px;
        }

        article h2, article h3, article h4, article h5, article h6 {
            color: #222;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            line-height: 120%;
            margin: 20px 0 10px;
            text-transform: uppercase;
        }

        article h2 {
            font-size: 1.4rem;
        }

        article h3 {
            font-size: 1.2rem;
        }

        article h4 {
            font-size: 1rem;
        }

        article h5 {
            font-size: .8rem;
        }

        article h6 {
            font-size: .6rem;
        }

        /* Transition Section */
        .transition-section {
            margin: 40px 0;
        }

        .transition-section p {
            color: #222;
            font-size: 1rem;
            font-weight: 400;
            line-height: 155%;
            margin-bottom: 20px;
        }

        /* Links Section */
        .links-section {
            background: #fff;
            border-top: 1px solid #ddd;
            padding: 30px 0;
            margin-top: 40px;
        }

        .links-section h3 {
            color: #222;
            font-family: 'Work Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 100%;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

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

        .links-list li {
            margin: 0;
            padding: 5px 0;
        }

        .links-list a {
            color: #eb0254;
            text-decoration: none;
            font-size: .9rem;
            font-weight: 400;
            line-height: 130%;
            transition: color .3s;
        }

        .links-list a:hover {
            color: #999999;
        }

        /* Footer */
        .footer {
            background: #444;
            color: #777;
            margin-top: 50px;
            padding: 40px 0 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            text-align: center;
        }

        .footer-menu {
            margin-bottom: 15px;
        }

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

        .footer-menu li {
            margin: 0 10px 5px;
        }

        .footer-menu a {
            color: #999;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: .7rem;
            font-weight: 400;
            line-height: 100%;
            text-transform: uppercase;
            transition: color .3s;
        }

        .footer-menu a:hover {
            color: #fff;
        }

        .footer-copy {
            color: #777;
            font-size: .7rem;
            font-weight: 400;
            line-height: 130%;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }

            .nav-container {
                padding: 0 15px;
            }

            .nav-list {
                flex-direction: column;
            }

            .nav-list li {
                margin-right: 0;
                margin-bottom: 0;
            }

            .nav-list a {
                padding: 14px 0;
                border-top: 1px solid #555;
            }

            .nav-list li:first-child a {
                border-top: none;
            }

            .main-container {
                padding: 20px 15px;
            }

            h1 {
                font-size: 2rem;
            }

            .links-list {
                grid-template-columns: 1fr;
            }

            .footer-menu ul {
                flex-direction: column;
                align-items: center;
            }
        }

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

            .nav-container {
                padding: 0 10px;
            }

            .main-container {
                padding: 15px 10px;
            }

            h1 {
                font-size: 1.7rem;
            }

            article p {
                font-size: .9rem;
            }

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