        * {
            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-color: #f8f9fa;
            padding: 0;
            margin: 0;
        }
        a {
            color: #2a9d8f;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #264653;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a936f, #114b5f);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: white;
        }
        .logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links li a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
        }
        .nav-links li a:hover {
            color: #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .search-bar {
            margin: 2rem auto;
            max-width: 600px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #2a9d8f;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #2a9d8f;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #21867a;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        article {
            padding: 0 1rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #264653;
            margin-bottom: 1rem;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #2a9d8f;
            margin: 2rem 0 1rem;
            border-left: 4px solid #ffd166;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #e76f51;
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #ffef9f;
            padding: 1rem;
            border-radius: 4px;
            margin: 1.5rem 0;
            border-left: 4px solid #e9c46a;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .article-image {
            margin: 2rem auto;
            text-align: center;
        }
        .article-image img {
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .article-image figcaption {
            font-style: italic;
            color: #6c757d;
            margin-top: 0.5rem;
        }
        .comment-section, .rating-section {
            margin: 3rem 0;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            max-width: 800px;
            margin-top: 1rem;
        }
        .comment-form input, .comment-form textarea, .rating-form select, .rating-form button {
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            background-color: #2a9d8f;
            color: white;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
            justify-self: start;
            padding: 0.75rem 2rem;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #21867a;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars i {
            color: #ffd166;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #e9c46a;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0 2rem;
            padding: 2rem 0;
            border-top: 2px solid #dee2e6;
            border-bottom: 2px solid #dee2e6;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
        }
        .web-link a {
            color: #264653;
            font-weight: 500;
        }
        footer {
            background-color: #264653;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        footer p {
            margin-bottom: 0.5rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
                gap: 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links li a {
                display: block;
                padding: 0.75rem 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.75rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 4px;
            }
            .search-form button {
                margin-top: 0.5rem;
            }
        }
