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: #f5f5ff; }
        header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding: 15px; background-color: #4a148c; color: white; border-radius: 8px; }
        .logo { font-size: 28px; font-weight: bold; color: #ffeb3b; 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; }
        h1 { color: #4a148c; margin-bottom: 20px; border-bottom: 3px solid #ffeb3b; padding-bottom: 10px; }
        h2 { color: #7b1fa2; margin: 25px 0 15px; }
        h3 { color: #9c27b0; margin: 20px 0 10px; }
        .btn { display: inline-block; padding: 12px 25px; background-color: #ff5722; color: white; border-radius: 5px; text-decoration: none; font-weight: bold; margin: 10px 0; }
        .image-container { margin: 25px 0; text-align: center; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        footer { margin-top: 40px; padding: 20px; background-color: #4a148c; color: white; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #e1bee7; color: #4a148c; padding: 5px 10px; border-radius: 15px; margin: 5px; }
        @media (max-width: 768px) {
            header { flex-direction: column; }
            nav ul { flex-direction: column; gap: 10px; display: none; }
            .mobile-menu { display: block; background-color: #ffeb3b; color: #4a148c; border: none; padding: 10px; border-radius: 5px; cursor: pointer; }
            .show-menu { display: flex; }
        }
