        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #FFF5E6;
            color: #333;
            line-height: 1.8;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #FF6B6B;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #4ECDC4;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #FF6B6B, #FF8E53);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
        }
        .logo span {
            color: #4ECDC4;
        }
        .logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: white;
            font-size: 1.2rem;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #FF8E53;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-mobile a {
            color: white;
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            font-size: 1.2rem;
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.1);
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #F7F7F7;
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #FF6B6B;
        }
        .breadcrumb i {
            margin: 0 10px;
            color: #999;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: #FF6B6B;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #4ECDC4;
            margin: 40px 0 20px;
            border-left: 5px solid #FF6B6B;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #555;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #FF6B6B;
            font-weight: bold;
        }
        em {
            color: #4ECDC4;
            font-style: italic;
        }
        .highlight {
            background: #FFF5E6;
            padding: 20px;
            border-left: 4px solid #FF6B6B;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .article-image {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
        }
        .article-image img {
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .article-image figcaption {
            margin-top: 15px;
            font-style: italic;
            color: #777;
            font-size: 1rem;
        }
        .form-section {
            background: #F9F9F9;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: #555;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #DDD;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #4ECDC4;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #FF6B6B, #FF8E53);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255,107,107,0.3);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2rem;
            color: #DDD;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: #FFF;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .web-link {
            background: #F1F8E9;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #E8F5E9;
        }
        .web-link a {
            font-size: 1.1rem;
            color: #388E3C;
            display: block;
        }
        footer {
            background: #2C3E50;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #4ECDC4;
        }
        .footer-section p, .footer-section a {
            color: #BDC3C7;
            margin-bottom: 15px;
            display: block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495E;
            color: #95A5A6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 25px;
            }
            .form-section {
                padding: 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 16px;
            }
            .logo {
                font-size: 1.8rem;
            }
            .breadcrumb ul {
                font-size: 0.9rem;
            }
        }
