:root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--secondary);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        .logo a:hover {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.5rem;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: all 0.3s;
        }
        nav ul li a:hover, nav ul li a.active {
            background: var(--primary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: var(--light);
            margin-top: 1rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        .breadcrumb ul li {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb ul li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--primary);
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 2rem auto;
        }
        article {
            padding: 0 2rem;
        }
        h1, h2, h3, h4 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            color: var(--primary);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid var(--accent);
            margin: 2rem 0;
            border-radius: var(--radius);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 2rem auto;
            display: block;
            border: 3px solid var(--primary);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            font-style: italic;
            padding: 1.5rem;
            background: var(--light);
            border-radius: var(--radius);
            margin: 2rem 0;
            border-left: 5px solid var(--primary);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .form-section {
            background: var(--light);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .form-section h3 {
            margin-top: 0;
            color: var(--secondary);
        }
        form {
            display: grid;
            gap: 1rem;
            max-width: 600px;
        }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--primary);
            outline: none;
        }
        button {
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating i {
            color: #ffc107;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 0;
            background: var(--secondary);
            color: white;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: var(--radius);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            text-align: center;
            padding: 2rem;
            background: var(--dark);
            color: white;
            border-top: 5px solid var(--primary);
        }
        footer p {
            text-align: center;
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 0.5rem 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 0 1rem;
            }
            .web-links {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, .web-links, footer {
            animation: fadeIn 1s ease-out;
        }
