        * {
            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-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: #2a9d8f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #264653;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #264653;
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e9c46a;
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            color: #f4a261;
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-form input[type="search"] {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #2a9d8f;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #21867a;
        }
        nav {
            background-color: #2a9d8f;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 20px;
        }
        .nav-links a {
            color: white;
            padding: 10px 15px;
            display: block;
            font-weight: 500;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #21867a;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #e9f5db;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #2a9d8f;
        }
        main {
            padding: 30px 0;
            background-color: white;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #264653;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #2a9d8f;
            margin: 30px 0 15px;
            border-bottom: 3px solid #e9c46a;
            padding-bottom: 5px;
        }
        h3 {
            font-size: 1.5rem;
            color: #f4a261;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 5px solid #e9c46a;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .featured-image figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
        }
        .user-interaction {
            margin-top: 40px;
            padding: 20px;
            background-color: #f1faee;
            border-radius: 10px;
            border: 2px solid #a8dadc;
        }
        .interaction-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: bold;
            color: #264653;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2a9d8f;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #ffd166;
            cursor: pointer;
        }
        .rating-stars span:hover,
        .rating-stars span.active {
            color: #e9c46a;
        }
        .submit-btn {
            background-color: #2a9d8f;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            justify-self: start;
        }
        .submit-btn:hover {
            background-color: #21867a;
            transform: scale(1.05);
        }
        footer {
            background-color: #264653;
            color: white;
            padding: 40px 0 20px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #2a9d8f;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #21867a;
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3a506b;
            font-size: 0.9rem;
            color: #b0b7c3;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-form {
                max-width: 100%;
                margin: 15px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2a9d8f;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 1000;
                padding: 10px 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0;
                text-align: center;
            }
            .nav-links a {
                padding: 15px;
                border-bottom: 1px solid #21867a;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .interaction-form {
                grid-template-columns: 1fr;
            }
        }
