        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #1a5fb4;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e95420;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 2rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.8rem;
            background: linear-gradient(135deg, #1a5fb4, #2d8ae5);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(26, 95, 180, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #e95420, #ff7b3a);
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(233, 84, 32, 0.4);
        }
        .section {
            padding: 4rem 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #1a1a1a;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, #1a5fb4, #e95420);
            border-radius: 3px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffeb3b 0%, #ffeb3b 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0 0.1em;
        }
        .site-header {
            background: linear-gradient(90deg, #0c3b6f 0%, #1a5fb4 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo i {
            color: #ff7b3a;
        }
        .logo a {
            color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ff7b3a;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8f1ff;
            padding: 1rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            padding-left: 0;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.75rem;
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.75rem;
            color: #666;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a5fb4;
        }
        .hero {
            background: linear-gradient(rgba(12, 59, 111, 0.85), rgba(26, 95, 180, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 6rem 0;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.95;
        }
        .search-widget {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 3rem auto;
            max-width: 800px;
        }
        .search-widget h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #1a5fb4;
        }
        .search-form {
            display: flex;
            gap: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #1a5fb4;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            align-items: start;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }
        .main-content p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .main-content h2 {
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            color: #0c3b6f;
        }
        .main-content h3 {
            font-size: 1.7rem;
            margin: 2.5rem 0 1.2rem;
            color: #1a5fb4;
        }
        .featured-image {
            margin: 3rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 1rem;
            background-color: #f5f9ff;
            color: #555;
        }
        .sidebar {
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar-widget h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #0c3b6f;
            border-left: 5px solid #e95420;
            padding-left: 1rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2.2rem;
            margin: 1rem 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffc107;
        }
        .rating-widget textarea,
        .rating-widget input[type="text"],
        .rating-widget input[type="email"] {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .rating-widget textarea:focus,
        .rating-widget input:focus {
            outline: none;
            border-color: #1a5fb4;
        }
        .rating-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comments-section {
            margin-top: 4rem;
        }
        .comment {
            background: #f8fbff;
            border-left: 4px solid #1a5fb4;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border-radius: 0 12px 12px 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: 700;
            color: #0c3b6f;
        }
        .comment-date {
            color: #777;
            font-size: 0.9rem;
        }
        .comment-text {
            color: #444;
        }
        .footer-links {
            background: #0c3b6f;
            padding: 3rem 0;
            color: white;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-links h5 {
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
            color: #ff7b3a;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(5px);
        }
        .web-link a {
            color: #e8f1ff;
            font-weight: 500;
            display: block;
        }
        .site-footer {
            background: #061b36;
            color: #aaa;
            padding: 2.5rem 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            html { font-size: 14px; }
            .hero h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .header-container { flex-wrap: wrap; }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1.5rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .main-content {
                padding: 2rem;
            }
            .content-area {
                gap: 2rem;
            }
        }
