
        @import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700);
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            font-size: 100%;
        }
        
        body {
            font-family: 'Source Sans Pro', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: #c41230;
            color: white;
            padding: 20px 0;
            position: relative;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            text-transform: uppercase;
            font-weight: 400;
            transition: opacity 0.3s ease;
        }
        
        nav a:hover {
            opacity: 0.8;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        main {
            background-color: white;
            min-height: 70vh;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #c41230 0%, #f89b1d 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        h1 {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .content-section {
            padding: 40px 0;
        }
        
        article {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        article h2 {
            font-size: 28px;
            color: #a0a0a0;
            text-transform: uppercase;
            margin: 30px 0;
            font-weight: 300;
        }
        
        article h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: bold;
            color: #333;
        }
        
        article p {
            margin-bottom: 15px;
            color: #333;
            text-align: justify;
        }
        
        article a {
            color: #f89b1d;
            text-decoration: none;
            font-weight: bold;
        }
        
        article a:hover {
            text-decoration: underline;
        }
        
        .transition-section {
            background-color: #ededed;
            padding: 30px 0;
        }
        
        .links-section {
            background-color: #ededed;
            padding: 40px 0;
        }
        
        .links-container h3 {
            font-size: 18px;
            color: #c41230;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .links-container ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 30px;
            margin-bottom: 30px;
        }
        
        .links-container li {
            margin-bottom: 7px;
        }
        
        .links-container a {
            color: #c41230;
            text-decoration: none;
            font-size: 15px;
            text-transform: uppercase;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .links-container a:hover {
            color: #878787;
        }
        
        footer {
            background-color: #c41230;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .footer-section a:hover {
            opacity: 0.8;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.3);
            margin-top: 20px;
        }
        
        @media screen and (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            h1 {
                font-size: 32px;
            }
            
            .hero-section {
                padding: 40px 0;
            }
            
            .content-section {
                padding: 20px 0;
            }
            
            article h2 {
                font-size: 24px;
                margin: 20px 0;
                text-align: center;
            }
            
            .links-container ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-section {
                min-width: auto;
            }
        }
        
        @media screen and (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            article {
                padding: 0 15px;
            }
            
            .hero-section {
                padding: 30px 0;
            }
        }
    