        :root {
            --primary-color: #2BB673;
            --secondary-color: #879bf3;
            --accent-color: #2EC4B6;
            --dark-color: #0B3C49;
            --light-color: #F0FAFB;
            --success-color: #2BB673;
        }
        
        .btn-more {
            display: inline-block;
            margin-top: 60px;
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

                .btn-more:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(115, 87, 243, 0.4);
            color: white;
        }
