        * {
            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: #f8f9fa;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: linear-gradient(135deg, #0033a0 0%, #ce1126 33%, #006847 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, gold, white, silver);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: transform 0.3s;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #0033a0;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #006847;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6c757d;
            margin: 0 5px;
        }
        .search-section {
            background-color: #fff;
            padding: 2rem 0;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(to right, #ce1126, #0033a0);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #0033a0, #ce1126);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #0033a0;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ce1126;
            padding-bottom: 1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #006847;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ccc;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #ce1126;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.2rem;
            color: #0033a0;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content p.lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            background-color: #f0f8ff;
            padding: 1rem;
            border-left: 4px solid #0033a0;
        }
        .article-content ul, .article-content ol {
            margin: 1rem 0 1rem 2rem;
            padding-left: 1rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .article-content a {
            color: #ce1126;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted transparent;
            transition: all 0.3s;
        }
        .article-content a:hover {
            color: #0033a0;
            border-bottom-color: #0033a0;
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background-color: #f9f9f9;
        }
        .info-box {
            background: linear-gradient(145deg, #e3f2fd, #f3e5f5);
            border-left: 5px solid #9c27b0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box h4 {
            color: #7b1fa2;
            margin-top: 0;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #006847;
            font-size: 1.3rem;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #ce1126;
        }
        .sidebar-links li {
            list-style: none;
            margin-bottom: 0.7rem;
        }
        .sidebar-links a {
            color: #333;
            text-decoration: none;
            padding: 0.5rem;
            display: block;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .sidebar-links a:hover {
            background-color: #e9ecef;
            color: #ce1126;
            padding-left: 1rem;
        }
        .sidebar-links a i {
            margin-right: 8px;
            color: #0033a0;
        }
        .interaction-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }
        .interaction-section h2 {
            color: #0033a0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #495057;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #0033a0;
            box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.1);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .submit-button {
            background: linear-gradient(to right, #006847, #0033a0);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #0033a0, #006847);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.1);
        }
        .site-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #f1c40f;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links li {
            list-style: none;
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #f1c40f;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #34495e;
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #1abc9c;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6278;
            font-size: 0.9rem;
            color: #95a5a6;
        }
