
        @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Noticia+Text:wght@400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #252525;
            background: #f5f5f5;
        }
        
        #wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        
        header {
            background: #fff;
            border-bottom: 3px solid #04D7D6;
            padding: 20px 30px;
        }
        
        .logo {
            text-align: center;
            margin-bottom: 15px;
        }
        
        .logo a {
            font-size: 2.2em;
            font-weight: 700;
            color: #F5015B;
            text-decoration: none;
            font-family: 'Noticia Text', serif;
        }
        
        nav {
            background: #010101;
            padding: 0;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        nav li {
            margin: 0;
        }
        
        nav a {
            display: block;
            padding: 12px 18px;
            color: #f1f1f1;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.95em;
            transition: all 0.3s ease;
        }
        
        nav a:hover {
            background: #333;
            color: #F5015B;
        }
        
        main {
            padding: 40px 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        h1 {
            font-family: 'Noticia Text', serif;
            font-size: 2.4em;
            color: #262626;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        article {
            margin-bottom: 40px;
        }
        
        article h2 {
            font-family: 'Noticia Text', serif;
            font-size: 1.8em;
            color: #353535;
            margin: 30px 0 15px;
            font-weight: 700;
        }
        
        article h3 {
            font-family: 'Noticia Text', serif;
            font-size: 1.4em;
            color: #353535;
            margin: 25px 0 12px;
            font-weight: 700;
        }
        
        article h4 {
            font-size: 1.2em;
            color: #353535;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        
        article p {
            margin: 15px 0;
            font-size: 1em;
            line-height: 1.7;
            color: #252525;
        }
        
        article ul, article ol {
            margin: 15px 0 15px 30px;
        }
        
        article li {
            margin: 8px 0;
            line-height: 1.6;
        }
        
        article a {
            color: #04D7D6;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        
        article a:hover {
            color: #F5015B;
            text-decoration: none;
        }
        
        .transition-section {
            margin: 40px 0;
            padding: 25px;
            background: #f9f9f9;
            border-left: 4px solid #04D7D6;
            border-radius: 4px;
        }
        
        .transition-section p {
            margin: 12px 0;
            font-size: 1em;
            line-height: 1.7;
        }
        
        .links-section {
            margin-top: 50px;
            padding: 30px;
            background: #fafbfc;
            border: 1px solid #e1e1e1;
            border-radius: 6px;
        }
        
        .links-section h2 {
            font-family: 'Noticia Text', serif;
            font-size: 1.8em;
            color: #353535;
            margin-bottom: 25px;
            font-weight: 700;
            text-align: center;
        }
        
        .links-section h3 {
            font-family: 'Noticia Text', serif;
            font-size: 1.3em;
            color: #353535;
            margin: 25px 0 15px;
            font-weight: 700;
            padding-bottom: 8px;
            border-bottom: 2px solid #04D7D6;
        }
        
        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
            margin: 15px 0 30px;
        }
        
        .links-section li {
            padding: 8px 0;
        }
        
        .links-section a {
            color: #F5015B;
            text-decoration: none;
            font-size: 0.95em;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .links-section a:hover {
            color: #04D7D6;
            text-decoration: underline;
            transform: translateX(5px);
        }
        
        .links-section a:before {
            content: "▸ ";
            color: #04D7D6;
            margin-right: 5px;
        }
        
        footer {
            background: #17100D;
            color: #e1e1e1;
            padding: 30px;
            text-align: center;
            border-top: 3px solid #04D7D6;
        }
        
        footer a {
            color: #e1e1e1;
            text-decoration: none;
            margin: 0 10px;
        }
        
        footer a:hover {
            text-decoration: underline;
            color: #04D7D6;
        }
        
        footer p {
            margin: 10px 0;
            font-size: 0.9em;
        }
        
        @media (max-width: 768px) {
            header {
                padding: 15px;
            }
            
            .logo a {
                font-size: 1.6em;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav li {
                width: 100%;
            }
            
            nav a {
                padding: 12px 20px;
                text-align: left;
            }
            
            main {
                padding: 25px 15px;
            }
            
            h1 {
                font-size: 1.8em;
            }
            
            article h2 {
                font-size: 1.5em;
            }
            
            article h3 {
                font-size: 1.2em;
            }
            
            .links-section {
                padding: 20px 15px;
            }
            
            .links-section ul {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .transition-section {
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .logo a {
                font-size: 1.4em;
            }
            
            h1 {
                font-size: 1.5em;
            }
            
            article h2 {
                font-size: 1.3em;
            }
        }
    