
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Lato:wght@300;400&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', 'Verdana', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background: #f9f9f9;
        }
        
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            color: #904975;
            font-weight: 600;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        nav a {
            text-decoration: none;
            color: #555;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #904975;
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5em;
            color: #904975;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        article {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        
        article h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8em;
            color: #904975;
            margin: 30px 0 20px;
            font-weight: 400;
        }
        
        article h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4em;
            color: #666;
            margin: 25px 0 15px;
            font-weight: 400;
        }
        
        article p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }
        
        .transition-section {
            background: #fff;
            padding: 30px 40px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        
        .transition-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }
        
        .links-section {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }
        
        .links-section h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5em;
            color: #904975;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .links-section li {
            padding: 0;
        }
        
        .links-section a {
            text-decoration: none;
            color: #555;
            font-size: 15px;
            display: block;
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            background: #f9f9f9;
            border-left: 3px solid #904975;
        }
        
        .links-section a:hover {
            background: #f0f0f0;
            color: #904975;
            transform: translateX(5px);
        }
        
        footer {
            background: #2a2a2a;
            color: #fff;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 20px;
        }
        
        footer h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3em;
            color: #a4b57f;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        footer p, footer a {
            color: #ccc;
            font-size: 14px;
            line-height: 1.8;
            text-decoration: none;
        }
        
        footer a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 13px;
        }
        
        @media screen and (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            h1 {
                font-size: 2em;
            }
            
            article {
                padding: 25px;
            }
            
            article h2 {
                font-size: 1.5em;
            }
            
            article h3 {
                font-size: 1.2em;
            }
            
            .links-section {
                padding: 25px;
            }
            
            .links-section ul {
                grid-template-columns: 1fr;
            }
            
            .transition-section {
                padding: 20px 25px;
            }
        }
        
        @media screen and (max-width: 480px) {
            h1 {
                font-size: 1.6em;
            }
            
            article {
                padding: 20px;
            }
            
            .links-section {
                padding: 20px;
            }
        }
    