        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2a4d8f;
            --secondary: #e63946;
            --accent: #ffb703;
            --dark: #1d3557;
            --light: #f1faee;
            --text: #333333;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text);
            background-color: #f8f9fa;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: var(--gray);
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary);
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: white;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            font-size: 1.1rem;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: flex;
            }
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 15px 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 10px;
            color: var(--gray);
        }
        .search-bar {
            background-color: var(--dark);
            padding: 25px 0;
            margin-bottom: 30px;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c1121f;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        aside {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .rating-section, .comments-section {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 25px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star {
            transition: var(--transition);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent);
            transform: scale(1.1);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 77, 143, 0.1);
        }
        .btn {
            padding: 15px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-accent {
            background-color: var(--accent);
            color: var(--dark);
        }
        .btn-accent:hover {
            background-color: #ffaa00;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .stat-box {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
        }
        .highlight {
            background-color: rgba(255, 183, 3, 0.15);
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--dark);
            text-align: center;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 12px;
            margin: 30px 0;
            position: relative;
        }
        .quote::before,
        .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
        }
        .quote::before {
            top: 10px;
            left: 20px;
        }
        .quote::after {
            bottom: 10px;
            right: 20px;
        }
        .web-links {
            background-color: var(--dark);
            padding: 50px 0;
            margin-top: 60px;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        footer {
            background-color: #111;
            color: #aaa;
            padding: 50px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 20px;
            width: 100%;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .header-container { padding: 12px 15px; }
            .logo { font-size: 1.8rem; }
            article, aside, .rating-section, .comments-section { padding: 25px; }
            .content-area { gap: 25px; }
            section { padding: 40px 0; }
            .stat-number { font-size: 2.8rem; }
        }
        @media (max-width: 480px) {
            .search-form { flex-direction: column; border-radius: 12px; }
            .search-form button { padding: 15px; border-radius: 0 0 12px 12px; }
            .btn { width: 100%; }
        }
