        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            font-size: 18px;
            padding: 0;
            margin: 0;
        }
        a {
            color: #28a745;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e7e34;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2d7a4d, #1a5c36);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        nav {
            display: flex;
            gap: 30px;
        }
        nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 15px 20px;
            margin-top: 10px;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #28a745;
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            margin: 30px auto;
        }
        article {
            padding: 0 30px;
        }
        h1 {
            font-size: 3.2rem;
            color: #1a5c36;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.2;
            border-bottom: 4px solid #ffcc00;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.4rem;
            color: #2d7a4d;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 6px solid #28a745;
        }
        h3 {
            font-size: 1.9rem;
            color: #3a9e5f;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #4bbf73;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            background: #fff3cd;
            padding: 25px;
            border-left: 5px solid #ffcc00;
            margin: 30px 0;
            border-radius: 8px;
            font-size: 1.1rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .links-list {
            background: #e9f7ef;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            list-style-type: none;
        }
        .links-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .interactive {
            background: #f1f8ff;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .interactive h3 {
            grid-column: 1 / -1;
            text-align: center;
            color: #0056b3;
        }
        .search-box, .comment-box, .rating-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #28a745;
            outline: none;
        }
        button {
            background: #28a745;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-weight: bold;
        }
        button:hover {
            background: #1e7e34;
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        footer {
            background: #1a1a1a;
            color: #ddd;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 25px;
            font-size: 1.6rem;
        }
        friend-link {
            display: block;
            background: #333;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 5px;
            transition: background 0.3s;
            color: #28a745;
            font-weight: bold;
        }
        friend-link:hover {
            background: #444;
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 15px;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .interactive {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
        }
