:root {
            --primary: #0056A9;
            --secondary: #DA291C;
            --accent: #FFD700;
            --dark: #1A1A1A;
            --light: #F8F9FA;
            --gray: #6C757D;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent), white);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
            margin: 0 20px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #b5221a;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(255, 255, 255, 0.08);
            margin-top: 1rem;
            border-radius: var(--border-radius);
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            color: white;
            padding: 15px 22px;
            display: inline-block;
            font-weight: 600;
            border-radius: var(--border-radius);
        }
        .nav-list a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .nav-list a i {
            margin-right: 8px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: white;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        article {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            border-left: 6px solid var(--secondary);
            padding-left: 20px;
        }
        h2 {
            color: var(--dark);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--gray);
            font-weight: 500;
            padding: 15px;
            background-color: #f0f8ff;
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent);
            margin: 25px 0;
        }
        .highlight strong {
            color: var(--secondary);
        }
        em {
            color: var(--primary);
            font-style: italic;
        }
        strong {
            color: var(--dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .interactive-module {
            background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
            border: 1px solid #dee2e6;
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 40px 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .module-title i {
            margin-right: 15px;
            font-size: 1.8rem;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 86, 169, 0.2);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(218, 41, 28, 0.3);
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row-reverse;
            margin: 20px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            cursor: pointer;
            font-size: 2.5rem;
            color: #ddd;
            margin: 0 5px;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: var(--accent);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 10px 20px;
            border-radius: 8px;
            margin: 5px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex: 1; order: 3; margin: 15px 0 0; min-width: 100%; }
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .nav-list {
                flex-direction: column;
                display: none;
                width: 100%;
                background-color: var(--dark);
                border-radius: var(--border-radius);
                padding: 10px 0;
                margin-top: 10px;
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list a {
                width: 100%;
                text-align: center;
            }
            article { padding: 25px; }
            .header-top { flex-wrap: wrap; }
            .my-logo { font-size: 1.8rem; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .container { padding: 0 15px; }
            .interactive-module { padding: 20px; }
        }
