        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a { text-decoration: none; color: #2980b9; transition: color 0.3s; }
        a:hover { color: #1a5276; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2rem; margin: 1rem 0; }
        .container { width: 100%; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #1a5276; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #f39c12; padding-bottom: 0.5rem; margin-top: 2rem; }
        h2 { font-size: 2.2rem; color: #2c3e50; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #34495e; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: bold; }
        emoji { font-size: 1.2em; margin-right: 0.3rem; }
        header { background: linear-gradient(90deg, #1a5276, #2c3e50); color: white; padding: 1.5rem 0; border-radius: 0 0 12px 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin-bottom: 2rem; }
        .logo { font-size: 2.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; text-align: center; }
        .logo a { color: #f39c12; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .logo a:hover { color: #fff; }
        nav { margin-top: 1.5rem; }
        .nav-desktop { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; list-style: none; }
        .nav-desktop a { color: #ecf0f1; padding: 0.7rem 1.5rem; border-radius: 30px; background: rgba(255,255,255,0.1); font-weight: 600; }
        .nav-desktop a:hover { background: #f39c12; color: #1a5276; transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; padding: 0.5rem; }
        .nav-mobile { display: none; flex-direction: column; list-style: none; background: #2c3e50; border-radius: 8px; padding: 1rem; margin-top: 1rem; }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: #ecf0f1; padding: 0.8rem; border-bottom: 1px solid #4a6572; display: block; }
        .nav-mobile a:hover { background: #f39c12; color: #1a5276; }
        .breadcrumb { background: #ecf0f1; padding: 1rem; border-radius: 8px; margin: 1.5rem 0; font-size: 0.95rem; }
        .breadcrumb a { color: #7f8c8d; }
        .breadcrumb a:hover { color: #2980b9; }
        main { display: grid; grid-template-columns: 3fr 1fr; gap: 3rem; margin: 2rem 0; }
        @media (max-width: 992px) { main { grid-template-columns: 1fr; } }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.05); }
        aside { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; }
        .hero-img { width: 100%; border-radius: 10px; margin: 2rem 0; border: 5px solid #f39c12; }
        .interactive-box { background: #f8f9fa; border-left: 5px solid #2980b9; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        .search-form, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
        input, textarea, select { padding: 0.8rem; border: 1px solid #bdc3c7; border-radius: 6px; font-size: 1rem; width: 100%; }
        button { background: linear-gradient(to right, #2980b9, #1a5276); color: white; border: none; padding: 1rem 1.5rem; border-radius: 6px; cursor: pointer; font-weight: bold; transition: all 0.3s; }
        button:hover { background: linear-gradient(to right, #1a5276, #154360); transform: scale(1.03); }
        .stars { display: flex; gap: 0.5rem; font-size: 1.8rem; color: #f39c12; cursor: pointer; margin: 0.5rem 0; }
        .stars span:hover { color: #e67e22; }
        .footer-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin: 3rem 0 2rem; }
        @media (max-width: 768px) { .footer-links { grid-template-columns: repeat(2, 1fr); } }
        .web-link { background: #ecf0f1; padding: 1rem; border-radius: 8px; text-align: center; transition: all 0.3s; }
        .web-link:hover { background: #2980b9; transform: translateY(-5px); }
        .web-link a { color: #2c3e50; font-weight: 600; }
        .web-link:hover a { color: white; }
        footer { text-align: center; padding: 2rem; background: #2c3e50; color: #ecf0f1; border-radius: 12px 12px 0 0; margin-top: 3rem; }
        .copyright { margin-top: 1rem; font-size: 0.9rem; color: #bdc3c7; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            article, aside { padding: 1.5rem; }
            .footer-links { grid-template-columns: 1fr; }
        }
