        * {
            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;
        }
        a {
            text-decoration: none;
            color: #0056b3;
        }
        a:hover {
            color: #003d82;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #ffdb4d;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }
        nav ul {
            display: flex;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9ecef;
            margin-top: 1rem;
        }
        .breadcrumb ol {
            display: flex;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            margin: 1rem auto;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #2a5298;
            margin: 2rem 0 1rem;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #3a6bc2;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #5a86d8;
            margin: 1.2rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: #fffacd;
            padding: 1rem;
            border-left: 5px solid #ffcc00;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .feature {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #cce5ff;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .form-section {
            margin: 3rem 0;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 10px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        button {
            padding: 0.8rem 1.5rem;
            background: #1e3c72;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: bold;
        }
        button:hover {
            background: #2a5298;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        .rating input[type="radio"] {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        .featured-image {
            text-align: center;
            margin: 2rem 0;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            max-width: 800px;
        }
        footer {
            background: #1e3c72;
            color: white;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            border-bottom: none;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            color: #a3d5ff;
        }
        friend-link:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #3a6bc2;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            nav ul {
                flex-direction: column;
                display: none;
                width: 100%;
                background: #2a5298;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                z-index: 1000;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 0 1rem;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                margin-bottom: 1rem;
            }
        }
