        * {
            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: #f9f9f9;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        header {
            background: linear-gradient(135deg, #4a00e0, #8e2de2);
            color: white;
            padding: 1rem 2rem;
            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: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2.5rem;
        }
        .my-logo:hover {
            color: #ffcc00;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        .nav-links a {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 500;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #eee;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #4a00e0;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        article {
            padding: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #4a00e0;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #333;
            margin: 2rem 0 1rem;
            border-bottom: 3px solid #8e2de2;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #777;
            margin: 1rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1rem;
            border-left: 5px solid #ffcc00;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            max-width: 80%;
            border: 5px solid #f0f0f0;
        }
        .image-container figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: #f5f5f5;
            border-radius: 10px;
        }
        .link-list a {
            display: block;
            padding: 0.8rem;
            background: white;
            border-radius: 5px;
            border: 1px solid #ddd;
            text-align: center;
            transition: all 0.3s ease;
        }
        .link-list a:hover {
            background: #4a00e0;
            color: white;
            transform: translateY(-3px);
        }
        .form-section {
            margin: 3rem 0;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #dee2e6;
        }
        .form-section h3 {
            color: #4a00e0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(to right, #4a00e0, #8e2de2);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #8e2de2, #4a00e0);
            transform: scale(1.05);
        }
        footer {
            background: #222;
            color: white;
            padding: 3rem 2rem;
            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 h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        friend-link {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #444;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: #4a00e0;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0,0,0,0.9);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .link-list {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
