        * {
            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: #f8f5f0;
            background-image: linear-gradient(to bottom, #f8f5f0 0%, #e8e2d6 100%);
        }
        a {
            text-decoration: none;
            color: #2a5c7a;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d4a24e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-italic { font-style: italic; }
        .highlight {
            background-color: #fff9e6;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .site-header {
            background-color: #1a3650;
            color: #fff;
            padding: 15px 0;
            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;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d4a24e;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: Georgia, serif;
        }
        .logo span {
            color: #fff;
        }
        .logo:hover {
            color: #d4a24e;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #d4a24e;
            border-bottom: 2px solid #d4a24e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a3650;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 15px 0;
            border-bottom: 1px solid #2a5c7a;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #e8e2d6;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #2a5c7a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 80, 0.85), rgba(26, 54, 80, 0.9)), url('https://images.unsplash.com/photo-1567603626576-1f8e6b61dc5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 1px 1px 3px 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 30px;
            opacity: 0.95;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .search-box h2 {
            color: #1a3650;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #d4a24e;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: #2a5c7a;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #d4a24e;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            align-items: start;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-content h2 {
            color: #1a3650;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d4a24e;
            font-size: 2rem;
        }
        .article-content h3 {
            color: #2a5c7a;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content blockquote {
            border-left: 5px solid #d4a24e;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
            background-color: #f9f7f2;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .article-content ul, .article-content ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 8px solid #e8e2d6;
            max-width: 90%;
            margin: 0 auto;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .sidebar h3 {
            color: #1a3650;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4a24e;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-links a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            color: #333;
        }
        .sidebar-links a:hover {
            color: #d4a24e;
            padding-left: 8px;
        }
        .sidebar-links a:last-child {
            border-bottom: none;
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            font-size: 2rem;
            color: #ddd;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .rating-stars .star {
            margin: 0 2px;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffc107;
        }
        .rating-note {
            font-size: 0.9rem;
            color: #777;
        }
        .comments-section {
            margin-top: 60px;
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .comments-section h2 {
            color: #1a3650;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d4a24e;
        }
        .comment-form .form-group {
            margin-bottom: 20px;
        }
        .comment-form label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: #d4a24e;
        }
        .submit-btn {
            background-color: #2a5c7a;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #d4a24e;
        }
        .comment-list {
            margin-top: 50px;
        }
        .comment-item {
            border-bottom: 1px solid #eee;
            padding: 25px 0;
        }
        .comment-author {
            font-weight: bold;
            color: #1a3650;
        }
        .comment-date {
            color: #888;
            font-size: 0.9rem;
            margin-left: 15px;
        }
        .comment-text {
            margin-top: 10px;
            color: #333;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #2a5c7a;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #d4a24e;
        }
        .web-link p {
            margin-top: 8px;
            color: #666;
            font-size: 0.95rem;
        }
        .site-footer {
            background-color: #1a3650;
            color: #ccc;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-widget h4 {
            color: #d4a24e;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-widget a {
            color: #ccc;
            display: block;
            padding: 8px 0;
        }
        .footer-widget a:hover {
            color: #d4a24e;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a5c7a;
            color: #aaa;
            font-size: 0.95rem;
        }
