     /* HEADER */
            .topbar {
                background: linear-gradient(to right, #363636, #2c3e50);
                height: 56px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 16px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            }

            /* HERO BUTTONS */
            .hero-buttons {
                text-align: center;
                margin: 40px 0;
            }

            .hero-buttons ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: inline-flex;
                gap: 20px;
            }

            .hero-btn {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 18px 36px;
                font-size: 18px;
                font-weight: 600;
                text-decoration: none;
                color: #fff;
                background: linear-gradient(135deg, #ff4b2b, #ff416c);
                border-radius: 14px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                transition: all 0.25s ease;
            }

            .hero-btn:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            }
