        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #1a5276;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            border-bottom: 4px solid #f1c40f;
            padding-bottom: 0.5rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-top: 2.5rem;
            padding-left: 0.5rem;
            border-left: 5px solid #2ecc71;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            margin-top: 2rem;
            color: #2874a6;
        }
        h4 {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            margin-top: 1.8rem;
            color: #5499c7;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fffde7;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #f39c12;
            margin: 2rem 0;
        }
        .bold {
            font-weight: 800;
            color: #2c3e50;
        }
        .last-updated {
            font-style: italic;
            color: #7f8c8d;
            text-align: right;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        header {
            background: linear-gradient(135deg, #1a5276 0%, #2e86c1 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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            font-family: 'Arial Black', sans-serif;
            color: #f1c40f;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            color: #f1c40f;
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #f1c40f;
            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;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a5276;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                gap: 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                width: 100%;
                text-align: center;
                padding: 0.8rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #2e86c1;
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .sidebar {
            background-color: #f1f8ff;
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid #d6eaf8;
        }
        .sidebar h3 {
            color: #1a5276;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2e86c1;
            box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.2);
        }
        button {
            background: linear-gradient(to right, #27ae60, #2ecc71);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #219653, #27ae60);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #f1c40f;
        }
        .rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating i:hover {
            transform: scale(1.2);
        }
        .article-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            color: #666;
            background-color: #f9f9f9;
            font-size: 0.95rem;
        }
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-widget h3 {
            color: #f1c40f;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            background-color: #34495e;
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            border-radius: 5px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background-color: #3d566e;
            padding-left: 1.5rem;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6572;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
