        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #0056b3;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #e63946;
            text-decoration: underline;
        }
        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, #0a2e5c 0%, #1a4b8c 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;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(to right, #ffd700, #ff6b35);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav li {
            margin-left: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ff6b35;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #0056b3;
        }
        .breadcrumb span {
            color: #495057;
            margin: 0 5px;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #0a2e5c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #ff6b35;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #1a4b8c;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.6rem;
            color: #343a40;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #495057;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
            color: #6c757d;
            margin-bottom: 2rem;
        }
        strong {
            color: #0a2e5c;
            font-weight: 700;
        }
        em {
            color: #e63946;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid #ff6b35;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .icon-list {
            list-style: none;
            padding-left: 0;
        }
        .icon-list li {
            padding-left: 2rem;
            position: relative;
            margin-bottom: 0.8rem;
        }
        .icon-list li:before {
            content: '\f192';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #ff6b35;
            position: absolute;
            left: 0;
        }
        .article-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #0a2e5c;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b35;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            width: 100%;
        }
        button, .btn {
            background: linear-gradient(to right, #ff6b35, #e63946);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s, transform 0.2s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffd700;
        }
        footer {
            background: #0a2e5c;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: #ffd700;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            padding: 0;
        }
        .friend-links a {
            color: #adb5bd;
            background: rgba(255,255,255,0.05);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .friend-links a:hover {
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a4b8c;
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                margin: 0.5rem 0;
                margin-left: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .content-grid {
                gap: 2rem;
            }
        }
