        * {
            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-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        ul, ol {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2.5rem;
        }
        .my-logo:hover {
            color: #fff;
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffd700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a237e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            background-color: #4a148c;
            color: #ffd700;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #5c6bc0;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #9fa8da;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .content-area {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #ffd700;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a148c;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e8eaf6;
        }
        h3 {
            font-size: 1.6rem;
            color: #5c6bc0;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #7986cb;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 1rem;
            border-left: 4px solid #ffd700;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        b, strong {
            color: #d81b60;
        }
        .form-section {
            background-color: #f3e5f5;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .form-section h3 {
            color: #7b1fa2;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #1a237e, #4a148c);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #283593, #6a1b9a);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .feature-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            max-width: 800px;
        }
        .feature-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #777;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #ccc;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h4 {
            color: #1a237e;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        footer {
            background: #1a237e;
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            color: #ffd700;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            color: #bbdefb;
            display: block;
            margin-bottom: 0.7rem;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 0.5rem;
            transition: padding 0.3s ease;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            border-left: 4px solid #ffd700;
        }
        friend-link a {
            color: white;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            color: #bbdefb;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area, aside {
                padding: 1.5rem;
            }
            main {
                padding: 0 1rem;
            }
        }
        @media (max-width: 480px) {
            .header-container, .breadcrumb ol, .footer-container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 1.9rem;
            }
        }
