        * {
            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 {
            color: #2a5c82;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #e76f51;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .p-2 { padding: 2rem; }
        .bg-light { background-color: #fff; }
        .rounded { border-radius: 10px; }
        .shadow { box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
        .site-header {
            background: linear-gradient(135deg, #264653 0%, #2a5c82 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: #f4a261;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #e9c46a;
        }
        .logo:hover {
            color: #e9c46a;
        }
        .logo:hover span {
            color: #f4a261;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e9c46a;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background-color: rgba(233, 196, 106, 0.2);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e9c46a;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #264653;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e9c46a;
            padding: 1rem;
            border-bottom: 1px solid #2a5c82;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: #2a5c82;
        }
        .breadcrumb {
            background-color: #e9f5f9;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb a {
            color: #2a5c82;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(38, 70, 83, 0.85), rgba(38, 70, 83, 0.9)), url('https://images.unsplash.com/photo-1611647832580-377268dba7e6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 5rem 1rem;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #e9c46a;
        }
        .search-module {
            max-width: 700px;
            margin: 3rem auto;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(42, 92, 130, 0.15);
        }
        .search-module h2 {
            color: #264653;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }
        .search-form {
            display: flex;
            gap: 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #2a5c82;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(to right, #e76f51, #f4a261);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(to right, #d65c40, #e0924a);
            transform: scale(1.02);
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        .main-article h2 {
            color: #264653;
            border-left: 5px solid #f4a261;
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 2rem;
        }
        .main-article h3 {
            color: #2a5c82;
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .main-article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
            line-height: 1.8;
        }
        .main-article strong {
            color: #e76f51;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e9f5f9 0%, #f0f7fb 100%);
            border-left: 5px solid #2a5c82;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box h4 {
            color: #264653;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #264653;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f4a261;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #eee;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            font-weight: 500;
        }
        .sidebar a:hover {
            color: #e76f51;
        }
        .featured-image {
            margin: 3rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .interactive-module {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .module-title {
            color: #264653;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl; 
            justify-content: center;
        }
        .star-label {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-label:hover,
        .star-label:hover ~ .star-label,
        .stars input:checked ~ .star-label {
            color: #f4a261;
        }
        .stars input {
            display: none;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: #2a5c82;
        }
        .submit-btn {
            background: linear-gradient(to right, #2a5c82, #264653);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            align-self: center;
            min-width: 200px;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #264653, #1d3557);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(42, 92, 130, 0.3);
        }
        .footer-links {
            background-color: #264653;
            padding: 3rem 20px;
            margin-top: 4rem;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(233, 196, 106, 0.15);
            transform: translateX(5px);
        }
        .web-link a {
            color: #e9c46a;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: #f4a261;
        }
        .site-footer {
            background-color: #1d3557;
            color: #b8d4e3;
            padding: 2.5rem 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            color: #8fb3c9;
            max-width: 800px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .main-nav ul { display: none; }
            .hamburger { display: block; }
            .hero { padding: 3rem 1rem; }
            .main-article { padding: 2rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-btn { border-radius: 50px; width: 100%; }
            .interactive-module { padding: 1.5rem; }
        }
