* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0a2342 0%, #1d3557 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-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f1faee;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, #a8dadc, #457b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: #e63946;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            color: #f1faee;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-size: 1rem;
        }
        nav.desktop-nav a:hover,
        nav.desktop-nav a.active {
            background-color: rgba(168, 218, 220, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1d3557;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: #0a2342;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
        }
        article h1 {
            color: #0a2342;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #a8dadc;
            padding-bottom: 0.5rem;
        }
        article h2 {
            color: #1d3557;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ccc;
        }
        article h3 {
            color: #457b9d;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            text-align: justify;
        }
        article .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: #0a2342;
            background-color: #f8f9fa;
            padding: 1.2rem;
            border-left: 4px solid #e63946;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        article b, article strong {
            color: #0a2342;
            font-weight: 700;
        }
        article em {
            color: #555;
            font-style: italic;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .interactive-section {
            background: #f1f8ff;
            border: 2px solid #cde5ff;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .interactive-section h3 {
            margin-top: 0;
            color: #0a2342;
        }
        .interactive-section form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 1px solid #b0bec5;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #457b9d;
            outline: none;
            box-shadow: 0 0 0 3px rgba(69, 123, 157, 0.2);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffc107;
        }
        .btn {
            background: linear-gradient(to right, #457b9d, #1d3557);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            min-width: 150px;
        }
        .btn:hover {
            background: linear-gradient(to right, #1d3557, #0a2342);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        aside {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #0a2342;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #a8dadc;
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #457b9d;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #1d3557;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            background-color: #f8f9fa;
            border-radius: 6px;
            color: #333;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background-color: #e9ecef;
            border-left-color: #e63946;
            transform: translateX(5px);
        }
        .footer-links {
            background-color: #e9ecef;
            padding: 2.5rem 0;
            margin-top: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #0a2342;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }
        .web-link p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }
        footer {
            background-color: #0a2342;
            color: #f1faee;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #f1faee;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            width: 100%;
            font-size: 0.9rem;
            color: #a8dadc;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav.desktop-nav {
                display: none;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
            .article-container {
                gap: 2rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
