body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f9f0e6; }
        header { background-color: #ff6b35; color: white; padding: 15px; border-radius: 8px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-menu { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { color: #d72323; border-bottom: 3px solid #ff6b35; padding-bottom: 10px; }
        h2 { color: #ff6b35; margin-top: 30px; }
        h3 { color: #d77c23; margin-top: 25px; }
        .btn { display: inline-block; background-color: #d72323; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; margin: 10px 0; font-weight: bold; }
        .btn:hover { background-color: #ff6b35; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
        footer { margin-top: 50px; padding-top: 20px; border-top: 2px solid #ff6b35; }
        .tags { margin-top: 20px; }
        .tag { background-color: #ffe0b2; color: #d72323; padding: 3px 8px; border-radius: 15px; margin-right: 5px; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; position: absolute; top: 70px; right: 20px; background-color: #ff6b35; padding: 15px; border-radius: 8px; }
            nav ul.active { display: flex; }
            .mobile-menu { display: block; }
        }
