        * { 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.7;
            color: #333;
            background-color: #f9f7f4;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }
        button, input, textarea { font-family: inherit; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; color: #2c3e50; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 2.5rem 0 1.5rem; color: #34495e; border-bottom: 3px solid #e67e22; padding-bottom: 0.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 2rem 0 1rem; color: #16a085; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; font-weight: 300; color: #555; }
        .highlight { background-color: #fff9e6; padding: 0.2em 0.4em; border-radius: 3px; }
        b, strong { color: #e67e22; }
        em { font-style: italic; color: #7f8c8d; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section { padding: 4rem 0; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        @media (min-width: 992px) {
            .content-wrapper {
                grid-template-columns: 2fr 1fr;
            }
        }
        .main-header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f1c40f;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo span { color: #1abc9c; }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            color: #f1c40f;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #2c3e50;
                flex-direction: column;
                padding: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-left: 4px solid #f1c40f;
            }
        }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a:hover { text-decoration: underline; color: #e67e22; }
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.9)), url('https://images.unsplash.com/photo-1595272564094-8b1c5d21b8d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 5rem 1rem;
            border-radius: 0 0 20px 20px;
            margin-bottom: 3rem;
        }
        .hero h1 { color: white; }
        .hero .lead { color: #ecf0f1; max-width: 800px; margin: 0 auto; }
        .main-content {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 5px solid #f1c40f;
        }
        .info-box {
            background: #e8f4fc;
            border-left: 5px solid #3498db;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #1abc9c;
        }
        .interactive-form {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #1abc9c;
            box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #e67e22, #d35400);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 126, 34, 0.4);
            background: linear-gradient(to right, #d35400, #e67e22);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #f1c40f; }
        .footer-links {
            background: #2c3e50;
            padding: 3rem 0;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #bdc3c7;
            display: block;
            font-size: 1rem;
        }
        .web-link a:hover { color: #1abc9c; }
        .main-footer {
            background: #1a252f;
            color: #95a5a6;
            text-align: center;
            padding: 2.5rem 0;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #2c3e50;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .emoji { font-size: 1.2em; margin-right: 0.3em; }
