        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: #f5f1e8;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2a5c82;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #d4a017;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a3a5f 0%, #2a5c82 100%);
            color: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
        }
        .logo a {
            color: #f8d568;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #d4a017;
        }
        .nav-desktop {
            display: flex;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
        }
        .nav-desktop li {
            margin-left: 30px;
        }
        .nav-desktop a {
            color: #e6e6e6;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            color: #f8d568;
            border-bottom-color: #f8d568;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            background: #1a3a5f;
            padding: 20px;
            border-top: 1px solid #2a5c82;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin: 15px 0;
        }
        .nav-mobile a {
            color: #e6e6e6;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .nav-mobile a:hover {
            background: #2a5c82;
            color: #f8d568;
        }
        .breadcrumb {
            background: #e9e2d2;
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #2a5c82;
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid #ddd;
        }
        .search-form {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background: #f9f9f9;
        }
        .search-button {
            background: #2a5c82;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #1a3a5f;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-title {
            color: #1a3a5f;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.3;
            border-bottom: 3px solid #f8d568;
            padding-bottom: 20px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #ccc;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
            margin-bottom: 10px;
            color: #666;
        }
        .meta-item i {
            margin-right: 8px;
            color: #d4a017;
        }
        .article-section {
            margin-bottom: 50px;
        }
        .section-title {
            color: #2a5c82;
            font-size: 2rem;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9e2d2;
        }
        .section-title i {
            margin-right: 10px;
            color: #d4a017;
        }
        .subsection-title {
            color: #1a3a5f;
            font-size: 1.6rem;
            margin: 25px 0 15px;
        }
        .article-text {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.15rem;
            color: #444;
        }
        .highlight {
            background: #fff9e6;
            border-left: 5px solid #f8d568;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #2a5c82;
            padding-left: 20px;
            margin: 25px 0;
            font-size: 1.2rem;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #666;
            padding: 10px;
            background: #f9f9f9;
        }
        .feature-list {
            list-style: none;
            margin: 20px 0;
        }
        .feature-list li {
            padding: 12px 0 12px 35px;
            position: relative;
        }
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2a5c82;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .tip-box {
            background: #e6f7ff;
            border: 1px solid #b3e0ff;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
        }
        .tip-title {
            color: #0066cc;
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .tip-title i {
            margin-right: 10px;
        }
        .sidebar {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            align-self: start;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget-title {
            color: #1a3a5f;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f8d568;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form select, .rating-form textarea, .rating-form input {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-form button {
            background: #2a5c82;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #1a3a5f;
        }
        .comments-section {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .comment-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .comment-form {
                grid-template-columns: 1fr;
            }
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        .form-group input, .form-group textarea {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        .submit-button {
            background: #d4a017;
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background 0.3s;
            justify-self: start;
        }
        .submit-button:hover {
            background: #b8860b;
        }
        .footer-links {
            background: #1a3a5f;
            padding: 50px 0;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #f8d568;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        .web-link i {
            margin-right: 10px;
            color: #d4a017;
        }
        .site-footer {
            background: #0f2a42;
            color: #ccc;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
        }
        .copyright {
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            gap: 20px;
        }
        .social-links a {
            color: #ccc;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #f8d568;
        }
        @media (max-width: 768px) {
            .article-content, .sidebar, .comments-section {
                padding: 25px;
            }
            .article-title {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .subsection-title {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .article-title {
                font-size: 1.8rem;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
            }
            .hamburger {
                position: absolute;
                top: 25px;
                right: 15px;
            }
        }
