        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: #2c3e50;
            color: white;
            padding: 1rem 2rem;
            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;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1abc9c;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }
        .logo a:hover {
            color: #16a085;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-desktop a:hover {
            background: #1abc9c;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #34495e;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid #4a6572;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background: #1abc9c;
        }
        .breadcrumb {
            background: #ecf0f1;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #2c3e50;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #1abc9c;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #34495e;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #bdc3c7;
        }
        h3 {
            font-size: 1.5rem;
            color: #16a085;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #f8f9fa;
            padding: 1.5rem;
            border-left: 4px solid #1abc9c;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .bold {
            font-weight: 800;
            color: #2c3e50;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        .search-box, .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #2c3e50;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 2px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #1abc9c;
            outline: none;
        }
        button {
            background: #1abc9c;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.2s;
        }
        button:hover {
            background: #16a085;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #f39c12;
            cursor: pointer;
        }
        .featured-image {
            margin: 2rem auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.5rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            padding: 2rem;
            background: #2c3e50;
            color: white;
        }
        .web-link {
            background: #34495e;
            padding: 1rem;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: #1abc9c;
        }
        .web-link a {
            color: white;
            display: block;
        }
        .footer {
            background: #1a252f;
            color: #bdc3c7;
            text-align: center;
            padding: 2rem;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2rem; }
            .container { padding: 0 1rem; }
            .main-content, .sidebar { padding: 1.5rem; }
        }
