:root {
            --primary-color: #0a2e6b;
            --secondary-color: #c8102e;
            --accent-color: #ffd700;
            --text-dark: #333333;
            --text-light: #f5f5f5;
            --bg-light: #f8f9fa;
            --border-color: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary-color), #1a4a94);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--accent-color);
            text-shadow: 2px 2px 0 var(--secondary-color);
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo span {
            color: white;
        }
        .my-logo:hover {
            color: white;
        }
        .my-logo:hover span {
            color: var(--accent-color);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--accent-color);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-color);
        }
        .search-form-header {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
            width: 250px;
        }
        .search-form-header input {
            border: none;
            padding: 10px 15px;
            flex-grow: 1;
            outline: none;
        }
        .search-form-header button {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form-header button:hover {
            background: #a00d24;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-color);
                transition: left 0.4s ease;
                z-index: 999;
                overflow-y: auto;
                padding: 2rem;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .search-form-header {
                width: 100%;
                margin-top: 1rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        .hero {
            background: linear-gradient(rgba(10, 46, 107, 0.85), rgba(10, 46, 107, 0.9)), url('https://images.unsplash.com/photo-1549633030-89d07416b423?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 5rem 1rem;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.95;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--secondary-color);
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            border-left: 5px solid var(--secondary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--bg-light), #e9ecef);
            border-left: 5px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .related-links {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            padding: 0.8rem;
            background: white;
            border-radius: 8px;
            transition: var(--transition);
        }
        .related-links li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .user-actions form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .user-actions input, .user-actions textarea, .user-actions select {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .user-actions input:focus, .user-actions textarea:focus, .user-actions select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(10, 46, 107, 0.1);
        }
        .user-actions textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin: 1rem 0;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-color);
        }
        .btn {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: #a00d24;
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(200, 16, 46, 0.2);
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        .site-footer {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--accent-color);
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
            border-left: 5px solid var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
