        * {
            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: #2c3e50;
        }
        a:hover {
            color: #e74c3c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #4a148c);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            color: #ff9800;
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .breadcrumb {
            margin: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #bbdefb;
        }
        .breadcrumb a:hover {
            color: #ffeb3b;
        }
        .breadcrumb span {
            color: #ccc;
            margin: 0 5px;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffeb3b;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffeb3b;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        main {
            background: white;
            padding: 2rem 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 1rem 0;
        }
        article {
            padding: 0 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1rem;
            text-align: center;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a148c;
            margin: 1.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #ff9800;
        }
        h3 {
            font-size: 1.5rem;
            color: #6a1b9a;
            margin: 1.2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #8e24aa;
            margin: 1rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 15px;
            border-left: 4px solid #ff9800;
            margin: 1rem 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            width: 80%;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.03);
        }
        .functional-section {
            background: #f1f8e9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .functional-section h3 {
            color: #33691e;
        }
        form {
            display: grid;
            gap: 1rem;
            max-width: 600px;
            margin: 1rem auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #1a237e, #4a148c);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #283593, #6a1b9a);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            margin: 1rem 0;
        }
        .rating i {
            color: #ffc107;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .rating i:hover {
            color: #ff9800;
        }
        .related-links {
            background: #e3f2fd;
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
        .related-links li a {
            color: #1565c0;
            display: block;
            padding: 8px;
            border-radius: 4px;
            background: white;
            transition: all 0.3s ease;
        }
        .related-links li a:hover {
            background: #bbdefb;
            transform: translateY(-3px);
        }
        footer {
            background: #1a237e;
            color: white;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #ffeb3b;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            color: #bbdefb;
            font-style: italic;
        }
        friend-link a {
            color: #bbdefb;
        }
        friend-link a:hover {
            color: #ffeb3b;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #283593;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 1rem;
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .featured-image {
                width: 95%;
            }
            .related-links ul {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, footer, .functional-section, .related-links {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            h1, h2, h3 {
                color: black;
            }
        }
