        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
            background-attachment: fixed;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            min-height: 100vh;
        }
        header {
            background: linear-gradient(90deg, #0c2461 0%, #1e3799 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #f6b93b, #fa983a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo i {
            margin-right: 10px;
            color: #fa983a;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #f6b93b;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 80%;
            left: 10%;
        }
        .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;
            width: 100%;
            background-color: #0c2461;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
            flex-direction: column;
            gap: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 12px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb a {
            color: #1e3799;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            margin: 2rem 0;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #1e3799;
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #f6b93b;
        }
        .search-button {
            background: linear-gradient(45deg, #1e3799, #0c2461);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(45deg, #f6b93b, #fa983a);
            transform: scale(1.02);
        }
        .main-content {
            padding: 2rem 0;
        }
        h1 {
            font-size: 2.8rem;
            color: #0c2461;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            color: #1e3799;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 3px solid #f6b93b;
        }
        h3 {
            font-size: 1.5rem;
            color: #0c2461;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(246, 185, 59, 0.2);
            padding: 2rem;
            border-left: 5px solid #f6b93b;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            margin-bottom: 2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-top: 5px solid #1e3799;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-card h4 {
            color: #0c2461;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f6b93b;
            display: block;
            margin-bottom: 0.5rem;
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            border: 2px dashed #1e3799;
        }
        .rating-section, .comment-section {
            margin-bottom: 2.5rem;
        }
        .rating-title, .comment-title {
            font-size: 1.5rem;
            color: #0c2461;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #f6b93b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 15px;
            border: 2px solid #c3cfe2;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        textarea:focus, input[type="text"]:focus, input[type="email"]:focus {
            border-color: #1e3799;
            outline: none;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            align-self: flex-start;
            background: linear-gradient(45deg, #1e3799, #0c2461);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .submit-button:hover {
            background: linear-gradient(45deg, #f6b93b, #fa983a);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(246, 185, 59, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 2px solid #c3cfe2;
            border-bottom: 2px solid #c3cfe2;
        }
        .web-link {
            padding: 12px 20px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .web-link a {
            color: #1e3799;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #f6b93b;
            text-decoration: underline;
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            color: #666;
            font-size: 0.9rem;
            background: #f8f9fa;
            margin-top: 3rem;
            border-radius: 12px 12px 0 0;
        }
        .copyright {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #ddd;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .logo {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                border-right: 2px solid #1e3799;
                margin-bottom: 10px;
            }
            .search-button {
                border-radius: 50px;
                padding: 15px;
            }
        }
        @media print {
            .user-interaction,
            .search-container,
            .footer-links,
            .hamburger {
                display: none !important;
            }
        }
