
        @import url('https://fonts.googleapis.com/css?family=Oswald:300,400,700');
        @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,600,700');
        
        * {
            box-sizing: border-box;
        }
        
        body {
            padding: 0;
            margin: 0;
            font-weight: 400;
            color: #000;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            background: #fff;
        }
        
        .wrapper {
            width: 100%;
            max-width: 1914px;
            margin: 0 auto;
        }
        
        header {
            background: #000;
            width: 100%;
            height: 150px;
            border-bottom: 5px solid #d6185c;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .header {
            width: 75%;
            height: 150px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .header_logo {
            display: flex;
            align-items: center;
            justify-content: left;
            width: 30%;
        }
        
        .header_logo a {
            display: block;
        }
        
        .header_logo img {
            display: block;
            width: 100%;
            max-width: 318px;
            height: auto;
        }
        
        .main_nav {
            display: flex;
            align-items: center;
            justify-content: left;
            width: 60%;
        }
        
        .main_nav ul {
            width: 100%;
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
        }
        
        .main_nav ul li {
            list-style: none;
            padding: 0;
            margin: 0 0 5px 35px;
        }
        
        .main_nav ul li a {
            font-size: 20px;
            text-decoration: none;
            color: #fff;
            font-weight: 400;
            font-family: 'Oswald', sans-serif;
        }
        
        .main_nav ul li a:hover {
            color: #d6185c;
        }
        
        main {
            min-height: calc(100vh - 200px);
        }
        
        .content-wrapper {
            width: 75%;
            margin: 0 auto;
            padding: 80px 0;
        }
        
        h1 {
            font-size: 50px;
            line-height: 50px;
            font-weight: 700;
            color: #d6185c;
            margin: 0 0 40px 0;
            text-transform: uppercase;
            font-family: 'Oswald', sans-serif;
        }
        
        article {
            margin-bottom: 60px;
        }
        
        article p {
            font-size: 20px;
            line-height: 36px;
            font-weight: 400;
            color: #000;
            margin: 0 0 30px 0;
        }
        
        article h2 {
            font-size: 40px;
            line-height: 40px;
            font-weight: 700;
            color: #d6185c;
            margin: 40px 0 20px 0;
            text-transform: uppercase;
            font-family: 'Oswald', sans-serif;
        }
        
        article h3 {
            font-size: 30px;
            line-height: 30px;
            font-weight: 700;
            color: #000;
            margin: 30px 0 20px 0;
            font-family: 'Oswald', sans-serif;
        }
        
        article h4 {
            font-size: 24px;
            line-height: 28px;
            font-weight: 600;
            color: #000;
            margin: 25px 0 15px 0;
            font-family: 'Oswald', sans-serif;
        }
        
        .transition-section {
            background: #f3f3f3;
            padding: 60px 0;
            margin: 60px 0;
        }
        
        .transition-content {
            width: 75%;
            margin: 0 auto;
            text-align: center;
        }
        
        .transition-content p {
            font-size: 20px;
            line-height: 36px;
            font-weight: 400;
            color: #000;
            margin: 0 0 20px 0;
        }
        
        .links-section {
            width: 75%;
            margin: 0 auto;
            padding: 60px 0;
        }
        
        .links-section h3 {
            font-size: 40px;
            line-height: 40px;
            font-weight: 700;
            color: #d6185c;
            margin: 40px 0 30px 0;
            text-transform: uppercase;
            font-family: 'Oswald', sans-serif;
        }
        
        .links-section ul {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .links-section ul li {
            padding: 0;
            margin: 0;
        }
        
        .links-section ul li a {
            color: #000;
            text-decoration: underline;
            font-size: 18px;
            font-weight: 400;
        }
        
        .links-section ul li a:hover {
            color: #d6185c;
            text-decoration: none;
        }
        
        footer {
            background: #000;
            padding: 20px 0;
            border-top: 5px solid #d6185c;
        }
        
        .footer_inline {
            width: 75%;
            margin: 0 auto;
            color: #fff;
            font-size: 16px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .footer_inline a {
            color: #fff;
            text-decoration: none;
        }
        
        .footer_inline a:hover {
            text-decoration: underline;
        }
        
        .footer_seperator {
            margin: 0 5px;
        }
        
        @media (max-width: 768px) {
            header {
                height: auto;
                padding: 20px 0;
            }
            
            .header {
                width: 90%;
                flex-direction: column;
                height: auto;
            }
            
            .header_logo {
                width: 100%;
                justify-content: center;
                margin-bottom: 20px;
            }
            
            .main_nav {
                width: 100%;
                justify-content: center;
            }
            
            .main_nav ul {
                flex-direction: column;
                text-align: center;
            }
            
            .main_nav ul li {
                margin: 5px 0;
            }
            
            .main_nav ul li a {
                font-size: 18px;
            }
            
            .content-wrapper {
                width: 90%;
                padding: 40px 0;
            }
            
            h1 {
                font-size: 32px;
                line-height: 36px;
            }
            
            article h2 {
                font-size: 28px;
                line-height: 32px;
            }
            
            article h3 {
                font-size: 24px;
                line-height: 28px;
            }
            
            article p {
                font-size: 16px;
                line-height: 26px;
            }
            
            .transition-content {
                width: 90%;
            }
            
            .transition-content p {
                font-size: 16px;
                line-height: 26px;
            }
            
            .links-section {
                width: 90%;
                padding: 40px 0;
            }
            
            .links-section h3 {
                font-size: 28px;
                line-height: 32px;
            }
            
            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .links-section ul li a {
                font-size: 16px;
            }
            
            .footer_inline {
                width: 90%;
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .main_nav ul li {
                margin: 0 10px 10px 0;
            }
            
            h1 {
                font-size: 28px;
                line-height: 32px;
            }
            
            article h2 {
                font-size: 24px;
                line-height: 28px;
            }
        }
    