        * {
            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: #f5f5f5;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        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, #1a472a 0%, #0d2818 100%);
            color: #fff;
            padding: 15px 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;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }
        .logo a:hover {
            color: #fff;
            text-shadow: 0 0 10px #ffd700;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: #ffd700;
            color: #1a472a;
            transform: translateY(-3px);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: #ffd700;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .desktop-nav a:hover::after {
            width: 80%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #0d2818;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .mobile-nav a:hover {
            background-color: #ffd700;
            color: #1a472a;
        }
        .breadcrumb {
            background-color: #e9f5e9;
            padding: 10px 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #1a472a;
            font-weight: bold;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a472a;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #0d2818;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-left: 4px solid #ffd700;
            margin: 20px 0;
            border-radius: 5px;
        }
        .bold {
            font-weight: bold;
            color: #1a472a;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-img {
            width: 80%;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .article-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-img img:hover {
            transform: scale(1.03);
        }
        .form-section {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #ddd;
        }
        .form-title {
            font-size: 1.8rem;
            color: #1a472a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: grid;
            gap: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1a472a;
            box-shadow: 0 0 5px rgba(26, 71, 42, 0.5);
        }
        button {
            background: linear-gradient(to right, #1a472a, #0d2818);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: start;
        }
        button:hover {
            background: linear-gradient(to right, #0d2818, #1a472a);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .rating input {
            width: auto;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 20px;
            background-color: #e9f5e9;
            border-radius: 10px;
        }
        .web-link {
            background-color: #fff;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid #1a472a;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #1a472a;
            color: #fff;
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: bold;
        }
        footer {
            background-color: #0d2818;
            color: #fff;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #ffd700;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #ccc;
            border-top: 1px solid #1a472a;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 20px;
            }
            .article-img {
                width: 100%;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
