* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f8ff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #4CAF50, #2E8B57);
            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;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.8rem;
        }
        .logo:hover {
            color: #FFD700;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2E8B57;
            width: 100%;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #ddd;
        }
        .breadcrumb a {
            color: #FFD700;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin: 2rem auto;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2E8B57;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4CAF50;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #FFD700;
        }
        h3 {
            font-size: 1.5rem;
            color: #388E3C;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #E8F5E9;
            padding: 1.5rem;
            border-left: 5px solid #4CAF50;
            margin: 1.5rem 0;
            border-radius: 8px;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        aside {
            background: #F9F9F9;
            padding: 1.5rem;
            border-radius: 12px;
            border: 2px solid #E0E0E0;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-box h3 {
            margin-bottom: 1rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #4CAF50;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #388E3C;
        }
        .interaction {
            margin-top: 2rem;
        }
        .interaction h3 {
            margin-bottom: 1rem;
        }
        .interaction form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .interaction textarea, .interaction input, .interaction select {
            padding: 0.8rem;
            border: 2px solid #CCCCCC;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        .interaction textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interaction button {
            background: #FF9800;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .interaction button:hover {
            background: #F57C00;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }
        .rating i {
            color: #FFD700;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating i:hover {
            color: #FFC107;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 2rem 0;
            padding: 2rem;
            background: #2E8B57;
            border-radius: 12px;
        }
        @media (max-width: 1024px) {
            .internal-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .internal-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }
        .web-link a {
            color: #2E8B57;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: #4CAF50;
        }
        footer {
            background: #1B5E20;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 0 1rem;
            }
        }
